File tree Expand file tree Collapse file tree 17 files changed +48
-35
lines changed Expand file tree Collapse file tree 17 files changed +48
-35
lines changed Original file line number Diff line number Diff line change @@ -555,14 +555,6 @@ config VIDEO_MT9V032
555
555
This is a Video4Linux2 sensor-level driver for the Micron
556
556
MT9V032 752x480 CMOS sensor.
557
557
558
- config VIDEO_TCM825X
559
- tristate "TCM825x camera sensor support"
560
- depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_INT_DEVICE
561
- depends on MEDIA_CAMERA_SUPPORT
562
- ---help---
563
- This is a driver for the Toshiba TCM825x VGA camera sensor.
564
- It is used for example in Nokia N800.
565
-
566
558
config VIDEO_SR030PC30
567
559
tristate "Siliconfile SR030PC30 sensor support"
568
560
depends on I2C && VIDEO_V4L2
Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ obj-$(CONFIG_VIDEO_UPD64083) += upd64083.o
57
57
obj-$(CONFIG_VIDEO_OV7640) += ov7640.o
58
58
obj-$(CONFIG_VIDEO_OV7670) += ov7670.o
59
59
obj-$(CONFIG_VIDEO_OV9650) += ov9650.o
60
- obj-$(CONFIG_VIDEO_TCM825X) += tcm825x.o
61
60
obj-$(CONFIG_VIDEO_MT9M032) += mt9m032.o
62
61
obj-$(CONFIG_VIDEO_MT9P031) += mt9p031.o
63
62
obj-$(CONFIG_VIDEO_MT9T001) += mt9t001.o
Original file line number Diff line number Diff line change @@ -91,13 +91,6 @@ config VIDEO_M32R_AR_M64278
91
91
To compile this driver as a module, choose M here: the
92
92
module will be called arv.
93
93
94
- config VIDEO_OMAP2
95
- tristate "OMAP2 Camera Capture Interface driver"
96
- depends on VIDEO_DEV && ARCH_OMAP2 && VIDEO_V4L2_INT_DEVICE
97
- select VIDEOBUF_DMA_SG
98
- ---help---
99
- This is a v4l2 driver for the TI OMAP2 camera capture interface
100
-
101
94
config VIDEO_OMAP3
102
95
tristate "OMAP 3 Camera support"
103
96
depends on OMAP_IOVMM && VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && ARCH_OMAP3
Original file line number Diff line number Diff line change 2
2
# Makefile for the video capture/playback device drivers.
3
3
#
4
4
5
- omap2cam-objs := omap24xxcam.o omap24xxcam-dma.o
6
-
7
5
obj-$(CONFIG_VIDEO_VINO) += indycam.o
8
6
obj-$(CONFIG_VIDEO_VINO) += vino.o
9
7
@@ -14,7 +12,6 @@ obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o
14
12
obj-$(CONFIG_VIDEO_CAFE_CCIC) += marvell-ccic/
15
13
obj-$(CONFIG_VIDEO_MMP_CAMERA) += marvell-ccic/
16
14
17
- obj-$(CONFIG_VIDEO_OMAP2) += omap2cam.o
18
15
obj-$(CONFIG_VIDEO_OMAP3) += omap3isp/
19
16
20
17
obj-$(CONFIG_VIDEO_VIU) += fsl-viu.o
Original file line number Diff line number Diff line change @@ -83,14 +83,3 @@ config VIDEOBUF2_DMA_SG
83
83
#depends on HAS_DMA
84
84
select VIDEOBUF2_CORE
85
85
select VIDEOBUF2_MEMOPS
86
-
87
- config VIDEO_V4L2_INT_DEVICE
88
- tristate "V4L2 int device (DEPRECATED)"
89
- depends on VIDEO_V4L2
90
- ---help---
91
- An early framework for a hardware-independent interface for
92
- image sensors and bridges etc. Currently used by omap24xxcam and
93
- tcm825x drivers that should be converted to V4L2 subdev.
94
-
95
- Do not use for new developments.
96
-
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ ifeq ($(CONFIG_OF),y)
15
15
endif
16
16
17
17
obj-$(CONFIG_VIDEO_V4L2) += videodev.o
18
- obj-$(CONFIG_VIDEO_V4L2_INT_DEVICE) += v4l2-int-device.o
19
18
obj-$(CONFIG_VIDEO_V4L2) += v4l2-common.o
20
19
obj-$(CONFIG_VIDEO_V4L2) += v4l2-dv-timings.o
21
20
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ source "drivers/staging/media/go7007/Kconfig"
33
33
34
34
source "drivers/staging/media/msi3101/Kconfig"
35
35
36
+ source "drivers/staging/media/omap24xx/Kconfig"
37
+
36
38
source "drivers/staging/media/sn9c102/Kconfig"
37
39
38
40
source "drivers/staging/media/solo6x10/Kconfig"
Original file line number Diff line number Diff line change @@ -9,3 +9,5 @@ obj-$(CONFIG_USB_MSI3101) += msi3101/
9
9
obj-$(CONFIG_VIDEO_DM365_VPFE) += davinci_vpfe/
10
10
obj-$(CONFIG_VIDEO_OMAP4) += omap4iss/
11
11
obj-$(CONFIG_USB_SN9C102) += sn9c102/
12
+ obj-$(CONFIG_VIDEO_OMAP2) += omap24xx/
13
+ obj-$(CONFIG_VIDEO_TCM825X) += omap24xx/
Original file line number Diff line number Diff line change
1
+ config VIDEO_V4L2_INT_DEVICE
2
+ tristate
3
+
4
+ config VIDEO_OMAP2
5
+ tristate "OMAP2 Camera Capture Interface driver (DEPRECATED)"
6
+ depends on VIDEO_DEV && ARCH_OMAP2
7
+ select VIDEOBUF_DMA_SG
8
+ select VIDEO_V4L2_INT_DEVICE
9
+ ---help---
10
+ This is a v4l2 driver for the TI OMAP2 camera capture interface
11
+
12
+ It uses the deprecated int-device API. Since this driver is no
13
+ longer actively maintained and nobody is interested in converting
14
+ it to the subdev API, this driver will be removed soon.
15
+
16
+ If you do want to keep this driver in the kernel, and are willing
17
+ to convert it to the subdev API, then please contact the linux-media
18
+ mailinglist.
19
+
20
+ config VIDEO_TCM825X
21
+ tristate "TCM825x camera sensor support (DEPRECATED)"
22
+ depends on I2C && VIDEO_V4L2
23
+ depends on MEDIA_CAMERA_SUPPORT
24
+ select VIDEO_V4L2_INT_DEVICE
25
+ ---help---
26
+ This is a driver for the Toshiba TCM825x VGA camera sensor.
27
+ It is used for example in Nokia N800.
28
+
29
+ It uses the deprecated int-device API. Since this driver is no
30
+ longer actively maintained and nobody is interested in converting
31
+ it to the subdev API, this driver will be removed soon.
32
+
33
+ If you do want to keep this driver in the kernel, and are willing
34
+ to convert it to the subdev API, then please contact the linux-media
35
+ mailinglist.
Original file line number Diff line number Diff line change
1
+ omap2cam-objs := omap24xxcam.o omap24xxcam-dma.o
2
+
3
+ obj-$(CONFIG_VIDEO_OMAP2) += omap2cam.o
4
+ obj-$(CONFIG_VIDEO_TCM825X) += tcm825x.o
5
+ obj-$(CONFIG_VIDEO_V4L2_INT_DEVICE) += v4l2-int-device.o
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 28
28
#define OMAP24XXCAM_H
29
29
30
30
#include <media/videobuf-dma-sg.h>
31
- #include <media/v4l2-int-device.h>
32
31
#include <media/v4l2-device.h>
32
+ #include "v4l2-int-device.h"
33
33
34
34
/*
35
35
*
Original file line number Diff line number Diff line change 28
28
29
29
#include <linux/i2c.h>
30
30
#include <linux/module.h>
31
- #include <media/ v4l2-int-device.h>
31
+ #include " v4l2-int-device.h"
32
32
33
33
#include "tcm825x.h"
34
34
Original file line number Diff line number Diff line change 17
17
18
18
#include <linux/videodev2.h>
19
19
20
- #include <media/ v4l2-int-device.h>
20
+ #include " v4l2-int-device.h"
21
21
22
22
#define TCM825X_NAME "tcm825x"
23
23
Original file line number Diff line number Diff line change 28
28
#include <linux/string.h>
29
29
#include <linux/module.h>
30
30
31
- #include <media/ v4l2-int-device.h>
31
+ #include " v4l2-int-device.h"
32
32
33
33
static DEFINE_MUTEX (mutex );
34
34
static LIST_HEAD (int_list );
File renamed without changes.
You can’t perform that action at this time.
0 commit comments