]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
media: i2c: ov5648: Free V4L2 fwnode data on unbind
authorRafael Mendonca <rafaelmendsr@gmail.com>
Tue, 20 Sep 2022 14:27:48 +0000 (11:27 -0300)
committerSakari Ailus <sakari.ailus@linux.intel.com>
Tue, 25 Oct 2022 11:34:49 +0000 (14:34 +0300)
The V4L2 fwnode data structure doesn't get freed on unbind, which leads to
a memleak.

Fixes: e43ccb0a045f ("media: i2c: Add support for the OV5648 image sensor")
Signed-off-by: Rafael Mendonca <rafaelmendsr@gmail.com>
Reviewed-by: Tommaso Merciai <tommaso.merciai@amarulasolutions.com>
Reviewed-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
drivers/media/i2c/ov5648.c

index 84604ea7bdf9ec3b37f6b6cc78698bb67cde8be3..17465fcf28e335949f070b4961177b207003deda 100644 (file)
@@ -2597,6 +2597,7 @@ static void ov5648_remove(struct i2c_client *client)
        v4l2_ctrl_handler_free(&sensor->ctrls.handler);
        mutex_destroy(&sensor->mutex);
        media_entity_cleanup(&subdev->entity);
+       v4l2_fwnode_endpoint_free(&sensor->endpoint);
 }
 
 static const struct dev_pm_ops ov5648_pm_ops = {