media: v4l2-core: introduce a helper to unregister a spi subdev
authorEzequiel Garcia <ezequiel@collabora.com>
Thu, 15 Aug 2019 16:48:04 +0000 (13:48 -0300)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Mon, 26 Aug 2019 13:51:29 +0000 (10:51 -0300)
Introduce a new video4linux2 spi helper, to unregister a subdev.
This allows to get rid of some more ifdefs.

Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/v4l2-core/v4l2-device.c
drivers/media/v4l2-core/v4l2-spi.c
include/media/v4l2-common.h

index aa277f5..c281123 100644 (file)
@@ -11,9 +11,6 @@
 #include <linux/module.h>
 #include <linux/i2c.h>
 #include <linux/slab.h>
-#if defined(CONFIG_SPI)
-#include <linux/spi/spi.h>
-#endif
 #include <linux/videodev2.h>
 #include <media/v4l2-device.h>
 #include <media/v4l2-ctrls.h>
@@ -124,15 +121,8 @@ void v4l2_device_unregister(struct v4l2_device *v4l2_dev)
                        continue;
                }
 #endif
-#if defined(CONFIG_SPI)
-               if (sd->flags & V4L2_SUBDEV_FL_IS_SPI) {
-                       struct spi_device *spi = v4l2_get_subdevdata(sd);
-
-                       if (spi && !spi->dev.of_node && !spi->dev.fwnode)
-                               spi_unregister_device(spi);
-                       continue;
-               }
-#endif
+               else if (sd->flags & V4L2_SUBDEV_FL_IS_SPI)
+                       v4l2_spi_subdev_unregister(sd);
        }
        /* Mark as unregistered, thus preventing duplicate unregistrations */
        v4l2_dev->name[0] = '\0';
index ab5a7eb..2a7e82e 100644 (file)
@@ -8,6 +8,14 @@
 #include <media/v4l2-common.h>
 #include <media/v4l2-device.h>
 
+void v4l2_spi_subdev_unregister(struct v4l2_subdev *sd)
+{
+       struct spi_device *spi = v4l2_get_subdevdata(sd);
+
+       if (spi && !spi->dev.of_node && !spi->dev.fwnode)
+               spi_unregister_device(spi);
+}
+
 void v4l2_spi_subdev_init(struct v4l2_subdev *sd, struct spi_device *spi,
                const struct v4l2_subdev_ops *ops)
 {
index 8e66edd..e287865 100644 (file)
@@ -285,6 +285,13 @@ struct v4l2_subdev *v4l2_spi_new_subdev(struct v4l2_device *v4l2_dev,
 void v4l2_spi_subdev_init(struct v4l2_subdev *sd, struct spi_device *spi,
                const struct v4l2_subdev_ops *ops);
 
+/**
+ * v4l2_spi_subdev_unregister - Unregister a v4l2_subdev
+ *
+ * @sd: pointer to &struct v4l2_subdev
+ */
+void v4l2_spi_subdev_unregister(struct v4l2_subdev *sd);
+
 #else
 
 static inline struct v4l2_subdev *
@@ -299,6 +306,8 @@ v4l2_spi_subdev_init(struct v4l2_subdev *sd, struct spi_device *spi,
                     const struct v4l2_subdev_ops *ops)
 {}
 
+static inline void v4l2_spi_subdev_unregister(struct v4l2_subdev *sd)
+{}
 #endif
 
 /* ------------------------------------------------------------------------- */