Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: Move gc0310 sensor drivers to drivers/media/i2c/

The atomisp gc0310 sensor driver has now been fully converted to
a standard v4l2 sensor driver. Move it to drivers/media/i2c/
to reflect this.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>

authored by

Hans de Goede and committed by
Hans Verkuil
1e72afb5 55ad04a6

+17 -10
+6
MAINTAINERS
··· 10103 10103 F: Documentation/devicetree/bindings/media/i2c/galaxycore,gc0308.yaml 10104 10104 F: drivers/media/i2c/gc0308.c 10105 10105 10106 + GALAXYCORE GC0310 CAMERA SENSOR DRIVER 10107 + M: Hans de Goede <hansg@kernel.org> 10108 + L: linux-media@vger.kernel.org 10109 + S: Maintained 10110 + F: drivers/media/i2c/gc0310.c 10111 + 10106 10112 GALAXYCORE GC05a2 CAMERA SENSOR DRIVER 10107 10113 M: Zhi Mao <zhi.mao@mediatek.com> 10108 10114 L: linux-media@vger.kernel.org
+10
drivers/media/i2c/Kconfig
··· 70 70 To compile this driver as a module, choose M here: the 71 71 module will be called gc0308. 72 72 73 + config VIDEO_GC0310 74 + tristate "GalaxyCore GC0310 sensor support" 75 + select V4L2_CCI_I2C 76 + help 77 + This is a Video4Linux2 sensor-level driver for the Galaxycore 78 + GC0310 0.3MP sensor. 79 + 80 + To compile this driver as a module, choose M here: the 81 + module will be called gc0310. 82 + 73 83 config VIDEO_GC05A2 74 84 tristate "GalaxyCore gc05a2 sensor support" 75 85 select V4L2_CCI_I2C
+1
drivers/media/i2c/Makefile
··· 38 38 obj-$(CONFIG_VIDEO_DW9807_VCM) += dw9807-vcm.o 39 39 obj-$(CONFIG_VIDEO_ET8EK8) += et8ek8/ 40 40 obj-$(CONFIG_VIDEO_GC0308) += gc0308.o 41 + obj-$(CONFIG_VIDEO_GC0310) += gc0310.o 41 42 obj-$(CONFIG_VIDEO_GC05A2) += gc05a2.o 42 43 obj-$(CONFIG_VIDEO_GC08A3) += gc08a3.o 43 44 obj-$(CONFIG_VIDEO_GC2145) += gc2145.o
-9
drivers/staging/media/atomisp/i2c/Kconfig
··· 26 26 GC2235 is a 2M raw sensor. 27 27 28 28 It currently only works with the atomisp driver. 29 - 30 - config VIDEO_ATOMISP_GC0310 31 - tristate "GC0310 sensor support" 32 - depends on ACPI 33 - depends on I2C && VIDEO_DEV 34 - select V4L2_CCI_I2C 35 - help 36 - This is a Video4Linux2 sensor-level driver for the Galaxycore 37 - GC0310 0.3MP sensor.
-1
drivers/staging/media/atomisp/i2c/Makefile
··· 5 5 6 6 obj-$(CONFIG_VIDEO_ATOMISP_GC2235) += atomisp-gc2235.o 7 7 obj-$(CONFIG_VIDEO_ATOMISP_OV2722) += atomisp-ov2722.o 8 - obj-$(CONFIG_VIDEO_ATOMISP_GC0310) += atomisp-gc0310.o
drivers/staging/media/atomisp/i2c/atomisp-gc0310.c drivers/media/i2c/gc0310.c