aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/vimc/Makefile
diff options
context:
space:
mode:
authorHelen Fornazier <helen.koike@collabora.com>2017-06-19 14:00:18 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2017-06-23 09:12:07 -0300
commit4a29b70907496aa9da79112ec31cf9cf2b972c3f (patch)
tree9be42df7b467e369899f96e2e4d2e25869bf42f8 /drivers/media/platform/vimc/Makefile
parent[media] vimc: cap: Support several image formats (diff)
downloadlinux-dev-4a29b70907496aa9da79112ec31cf9cf2b972c3f.tar.xz
linux-dev-4a29b70907496aa9da79112ec31cf9cf2b972c3f.zip
[media] vimc: Subdevices as modules
Change the core structure for adding subdevices in the topology. Instead of calling the specific create function for each subdevice, inject a child platform_device with the driver's name. Each type of node in the topology (sensor, capture, debayer, scaler) will register a platform_driver with the corresponding name through the component subsystem. Implementing a new subdevice type doesn't require vimc-core to be altered. This facilitates future implementation of dynamic entities, where hotpluging an entity in the topology is just a matter of registering/unregistering a platform_device in the system. It also facilitates other implementations of different nodes without touching the core code and remove the need of a header file for each type of node. Signed-off-by: Helen Koike <helen.koike@collabora.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/platform/vimc/Makefile')
-rw-r--r--drivers/media/platform/vimc/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/media/platform/vimc/Makefile b/drivers/media/platform/vimc/Makefile
index 6b6ddf45e3bf..0e5d5ce37a18 100644
--- a/drivers/media/platform/vimc/Makefile
+++ b/drivers/media/platform/vimc/Makefile
@@ -1,3 +1,6 @@
-vimc-objs := vimc-core.o vimc-capture.o vimc-common.o vimc-sensor.o
+vimc-objs := vimc-core.o
+vimc_capture-objs := vimc-capture.o
+vimc_common-objs := vimc-common.o
+vimc_sensor-objs := vimc-sensor.o
-obj-$(CONFIG_VIDEO_VIMC) += vimc.o
+obj-$(CONFIG_VIDEO_VIMC) += vimc.o vimc_capture.o vimc_common.o vimc_sensor.o