aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/spi
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@kernel.org>2022-03-09 14:17:02 +0100
committerMauro Carvalho Chehab <mchehab@kernel.org>2022-03-14 09:42:59 +0100
commit5c89357a7a0f17c6198bb28614913fb1eb284615 (patch)
tree715142626bbe50de6bf2095736dc56bb87e48d54 /drivers/media/spi
parentmedia: Makefiles: remove extra spaces (diff)
downloadlinux-dev-5c89357a7a0f17c6198bb28614913fb1eb284615.tar.xz
linux-dev-5c89357a7a0f17c6198bb28614913fb1eb284615.zip
media: Makefiles: sort entries where it fits
Alphabetically sort entries at the Makefiles per group, in ASCII order, e. g., using the output of: $ LC_ALL=C sort Makefile |grep obj-y ... $ LC_ALL=C sort Makefile |grep obj.*CONFIG ... Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/media/spi')
-rw-r--r--drivers/media/spi/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/media/spi/Makefile b/drivers/media/spi/Makefile
index 9f45787d680d..6ac7adc64124 100644
--- a/drivers/media/spi/Makefile
+++ b/drivers/media/spi/Makefile
@@ -1,5 +1,8 @@
# SPDX-License-Identifier: GPL-2.0-only
-obj-$(CONFIG_VIDEO_GS1662) += gs1662.o
-obj-$(CONFIG_CXD2880_SPI_DRV) += cxd2880-spi.o
ccflags-y += -I $(srctree)/drivers/media/dvb-frontends/cxd2880
+
+# Please keep it alphabetically sorted by Kconfig name
+# (e. g. LC_ALL=C sort Makefile)
+obj-$(CONFIG_CXD2880_SPI_DRV) += cxd2880-spi.o
+obj-$(CONFIG_VIDEO_GS1662) += gs1662.o