Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90ebe55a authored by Sakari Ailus's avatar Sakari Ailus Committed by Mauro Carvalho Chehab
Browse files

media: staging: atomisp: Add driver prefix to Kconfig option and module names



By adding the "atomisp-" prefix to module names (and "ATOMISP_" to Kconfig
options), the staging drivers for e.g. sensors are labelled as being
specific to atomisp, which they effectively are.

Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 183c2e04
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
source "drivers/staging/media/atomisp/i2c/ov5693/Kconfig"
source "drivers/staging/media/atomisp/i2c/imx/Kconfig"

config VIDEO_OV2722
config VIDEO_ATOMISP_OV2722
       tristate "OVT ov2722 sensor support"
       depends on I2C && VIDEO_V4L2
       ---help---
@@ -16,7 +16,7 @@ config VIDEO_OV2722

	 It currently only works with the atomisp driver.

config VIDEO_GC2235
config VIDEO_ATOMISP_GC2235
       tristate "Galaxy gc2235 sensor support"
       depends on I2C && VIDEO_V4L2
       ---help---
@@ -27,7 +27,7 @@ config VIDEO_GC2235

	 It currently only works with the atomisp driver.

config VIDEO_OV8858
config VIDEO_ATOMISP_OV8858
       tristate "Omnivision ov8858 sensor support"
       depends on I2C && VIDEO_V4L2 && VIDEO_ATOMISP
       ---help---
@@ -38,7 +38,7 @@ config VIDEO_OV8858

	 It currently only works with the atomisp driver.

config VIDEO_MSRLIST_HELPER
config VIDEO_ATOMISP_MSRLIST_HELPER
       tristate "Helper library to load, parse and apply large register lists."
       depends on I2C
       ---help---
@@ -48,7 +48,7 @@ config VIDEO_MSRLIST_HELPER
	 To compile this driver as a module, choose M here: the
	 module will be called libmsrlisthelper.

config VIDEO_MT9M114
config VIDEO_ATOMISP_MT9M114
       tristate "Aptina mt9m114 sensor support"
       depends on I2C && VIDEO_V4L2
       ---help---
@@ -59,7 +59,7 @@ config VIDEO_MT9M114

	 It currently only works with the atomisp driver.

config VIDEO_AP1302
config VIDEO_ATOMISP_AP1302
       tristate "AP1302 external ISP support"
       depends on I2C && VIDEO_V4L2
       select REGMAP_I2C
@@ -71,14 +71,14 @@ config VIDEO_AP1302

	 It currently only works with the atomisp driver.

config VIDEO_GC0310
config VIDEO_ATOMISP_GC0310
	tristate "GC0310 sensor support"
	depends on I2C && VIDEO_V4L2
	---help---
	  This is a Video4Linux2 sensor-level driver for the Galaxycore
	  GC0310 0.3MP sensor.
	 
config VIDEO_OV2680
config VIDEO_ATOMISP_OV2680
       tristate "Omnivision OV2680 sensor support"
       depends on I2C && VIDEO_V4L2
       ---help---
@@ -93,7 +93,7 @@ config VIDEO_OV2680
# Kconfig for flash drivers
#

config VIDEO_LM3554
config VIDEO_ATOMISP_LM3554
       tristate "LM3554 flash light driver"
       depends on VIDEO_V4L2 && I2C
       ---help---
+10 −10
Original line number Diff line number Diff line
@@ -2,22 +2,22 @@
# Makefile for sensor drivers
#

obj-$(CONFIG_VIDEO_IMX)        += imx/
obj-$(CONFIG_VIDEO_OV5693)     += ov5693/
obj-$(CONFIG_VIDEO_MT9M114)    += mt9m114.o
obj-$(CONFIG_VIDEO_GC2235)     += gc2235.o
obj-$(CONFIG_VIDEO_OV2722)     += ov2722.o
obj-$(CONFIG_VIDEO_OV2680)     += ov2680.o
obj-$(CONFIG_VIDEO_GC0310)     += gc0310.o
obj-$(CONFIG_VIDEO_ATOMISP_IMX)        += imx/
obj-$(CONFIG_VIDEO_ATOMISP_OV5693)     += ov5693/
obj-$(CONFIG_VIDEO_ATOMISP_MT9M114)    += atomisp-mt9m114.o
obj-$(CONFIG_VIDEO_ATOMISP_GC2235)     += atomisp-gc2235.o
obj-$(CONFIG_VIDEO_ATOMISP_OV2722)     += atomisp-ov2722.o
obj-$(CONFIG_VIDEO_ATOMISP_OV2680)     += atomisp-ov2680.o
obj-$(CONFIG_VIDEO_ATOMISP_GC0310)     += atomisp-gc0310.o

obj-$(CONFIG_VIDEO_MSRLIST_HELPER) += libmsrlisthelper.o
obj-$(CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER) += atomisp-libmsrlisthelper.o

obj-$(CONFIG_VIDEO_AP1302)     += ap1302.o
obj-$(CONFIG_VIDEO_ATOMISP_AP1302)     += atomisp-ap1302.o

# Makefile for flash drivers
#

obj-$(CONFIG_VIDEO_LM3554) += lm3554.o
obj-$(CONFIG_VIDEO_ATOMISP_LM3554) += atomisp-lm3554.o

# HACK! While this driver is in bad shape, don't enable several warnings
#       that would be otherwise enabled with W=1
Loading