summaryrefslogtreecommitdiff
path: root/drivers/media/platform/atmel/Makefile
diff options
context:
space:
mode:
authorEugen Hristev <eugen.hristev@microchip.com>2019-06-12 08:00:31 -0400
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-06-21 16:36:11 -0400
commit0a0e265515db7619d0da9331d74245d02c741f07 (patch)
treecbf882258b98ffacb3b68d1c843e3e5bdcf0f7bb /drivers/media/platform/atmel/Makefile
parente0c76a7d3428824c4f360982efcfa085d8d7fb85 (diff)
media: atmel: atmel-isc: split driver into driver base and isc
This splits the Atmel ISC driver into a common base: atmel-isc-base.c and the driver probe/dt part , atmel-sama5d2-isc.c This is needed to keep a common ground for the sensor controller which will be reused. The atmel-isc will use the common symbols inside the atmel-isc-base Future driver will also use the same symbols and redefine different aspects, for a different version of the ISC. This is done to avoid complete code duplication by creating a totally different driver for the new variant of the ISC. Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> [hverkuil-cisco@xs4all.nl: folded 'atmel: atmel-sama5d2-isc: fixed checkpatch warnings' into this patch] Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/platform/atmel/Makefile')
-rw-r--r--drivers/media/platform/atmel/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/platform/atmel/Makefile b/drivers/media/platform/atmel/Makefile
index 484936604ccb..2dba38994a70 100644
--- a/drivers/media/platform/atmel/Makefile
+++ b/drivers/media/platform/atmel/Makefile
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-only
-obj-$(CONFIG_VIDEO_ATMEL_ISC) += atmel-isc.o
+atmel-isc-objs = atmel-sama5d2-isc.o atmel-isc-base.o
+
obj-$(CONFIG_VIDEO_ATMEL_ISI) += atmel-isi.o
+obj-$(CONFIG_VIDEO_ATMEL_ISC) += atmel-isc.o