config VIDEO_OV7740
        tristate "OmniVision OV7740 sensor support"
        depends on I2C && VIDEO_V4L2
-       select REGMAP_I2C
+       select REGMAP_SCCB
        help
          This is a Video4Linux2 sensor driver for the OmniVision
          OV7740 VGA camera sensor.
 
        struct v4l2_subdev *sd;
        int ret;
 
-       if (!i2c_check_functionality(client->adapter,
-                                    I2C_FUNC_SMBUS_BYTE_DATA)) {
-               dev_err(&client->dev,
-                       "OV7740: I2C-Adapter doesn't support SMBUS\n");
-               return -EIO;
-       }
-
        ov7740 = devm_kzalloc(&client->dev, sizeof(*ov7740), GFP_KERNEL);
        if (!ov7740)
                return -ENOMEM;
        if (ret)
                return ret;
 
-       ov7740->regmap = devm_regmap_init_i2c(client, &ov7740_regmap_config);
+       ov7740->regmap = devm_regmap_init_sccb(client, &ov7740_regmap_config);
        if (IS_ERR(ov7740->regmap)) {
                ret = PTR_ERR(ov7740->regmap);
                dev_err(&client->dev, "Failed to allocate register map: %d\n",
        }
 
        sd = &ov7740->subdev;
-       client->flags |= I2C_CLIENT_SCCB;
        v4l2_i2c_subdev_init(sd, client, &ov7740_subdev_ops);
 
 #ifdef CONFIG_VIDEO_V4L2_SUBDEV_API