]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
media: v4l2-core: Replace the check for firmware registered I2C devices
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 13 Mar 2025 11:30:34 +0000 (13:30 +0200)
committerHans Verkuil <hverkuil@xs4all.nl>
Tue, 17 Jun 2025 08:35:13 +0000 (10:35 +0200)
Replace the check for firmware registered I²C devices as the firmware node
independently on type should be retrieved via dev_fwnode().

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
drivers/media/v4l2-core/v4l2-i2c.c

index 586c46544255d67ece24089c77d04450c1dca181..ffc64e10fcaef44b3dd6e7bfaf3c989f6d9fb38e 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <linux/i2c.h>
 #include <linux/module.h>
+#include <linux/property.h>
 #include <media/v4l2-common.h>
 #include <media/v4l2-device.h>
 
@@ -24,7 +25,7 @@ void v4l2_i2c_subdev_unregister(struct v4l2_subdev *sd)
         * registered by us, and would not be
         * re-created by just probing the V4L2 driver.
         */
-       if (client && !client->dev.of_node && !client->dev.fwnode)
+       if (client && !dev_fwnode(&client->dev))
                i2c_unregister_device(client);
 }