struct i2c_client *client = v4l2_get_subdevdata(&imx219->sd);
        struct v4l2_ctrl_handler *ctrl_hdlr;
        unsigned int height = imx219->mode->height;
+       struct v4l2_fwnode_device_properties props;
        int exposure_max, exposure_def, hblank;
        int i, ret;
 
        ctrl_hdlr = &imx219->ctrl_handler;
-       ret = v4l2_ctrl_handler_init(ctrl_hdlr, 9);
+       ret = v4l2_ctrl_handler_init(ctrl_hdlr, 11);
        if (ret)
                return ret;
 
                goto error;
        }
 
+       ret = v4l2_fwnode_device_parse(&client->dev, &props);
+       if (ret)
+               goto error;
+
+       ret = v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &imx219_ctrl_ops,
+                                             &props);
+       if (ret)
+               goto error;
+
        imx219->sd.ctrl_handler = ctrl_hdlr;
 
        return 0;