diff options
author | Maxime Ripard <maxime.ripard@bootlin.com> | 2019-08-22 10:21:13 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-08-23 12:29:05 +0200 |
commit | 3f0e6df62213ede83e3b223d36594cbcc953cb08 (patch) | |
tree | 79dd6f360d692d3720f374628c51e2d38aee0b3b /drivers/media/platform/sunxi | |
parent | media: dt-bindings: media: Add Allwinner A10 CSI binding (diff) | |
download | linux-3f0e6df62213ede83e3b223d36594cbcc953cb08.tar.xz linux-3f0e6df62213ede83e3b223d36594cbcc953cb08.zip |
media: sunxi: Refactor the Makefile and Kconfig
The Makefile and Kconfig for the sun6i CSI driver are included in the main
Makefile / KConfig file. Since we're going to add a new CSI driver for an
older chip, and the Cedrus driver eventually, it makes more sense to put
those in our directory.
Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/platform/sunxi')
-rw-r--r-- | drivers/media/platform/sunxi/Kconfig | 1 | ||||
-rw-r--r-- | drivers/media/platform/sunxi/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/platform/sunxi/Kconfig b/drivers/media/platform/sunxi/Kconfig new file mode 100644 index 000000000000..1b6e89cb78b2 --- /dev/null +++ b/drivers/media/platform/sunxi/Kconfig @@ -0,0 +1 @@ +source "drivers/media/platform/sunxi/sun6i-csi/Kconfig" diff --git a/drivers/media/platform/sunxi/Makefile b/drivers/media/platform/sunxi/Makefile new file mode 100644 index 000000000000..8d06f98500ee --- /dev/null +++ b/drivers/media/platform/sunxi/Makefile @@ -0,0 +1 @@ +obj-y += sun6i-csi/ |