aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cpia.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/cpia.c')
-rw-r--r--drivers/media/video/cpia.c22
1 files changed, 4 insertions, 18 deletions
diff --git a/drivers/media/video/cpia.c b/drivers/media/video/cpia.c
index 85d84e89d8f4..95c5aceecc5b 100644
--- a/drivers/media/video/cpia.c
+++ b/drivers/media/video/cpia.c
@@ -47,13 +47,6 @@
47 47
48#include "cpia.h" 48#include "cpia.h"
49 49
50#ifdef CONFIG_VIDEO_CPIA_PP
51extern int cpia_pp_init(void);
52#endif
53#ifdef CONFIG_VIDEO_CPIA_USB
54extern int cpia_usb_init(void);
55#endif
56
57static int video_nr = -1; 50static int video_nr = -1;
58 51
59#ifdef MODULE 52#ifdef MODULE
@@ -67,10 +60,10 @@ MODULE_SUPPORTED_DEVICE("video");
67static unsigned short colorspace_conv; 60static unsigned short colorspace_conv;
68module_param(colorspace_conv, ushort, 0444); 61module_param(colorspace_conv, ushort, 0444);
69MODULE_PARM_DESC(colorspace_conv, 62MODULE_PARM_DESC(colorspace_conv,
70 " Colorspace conversion:" 63 " Colorspace conversion:"
71 "\n 0 = disable, 1 = enable" 64 "\n 0 = disable, 1 = enable"
72 "\n Default value is 0" 65 "\n Default value is 0"
73 ); 66 );
74 67
75#define ABOUT "V4L-Driver for Vision CPiA based cameras" 68#define ABOUT "V4L-Driver for Vision CPiA based cameras"
76 69
@@ -4047,13 +4040,6 @@ static int __init cpia_init(void)
4047 proc_cpia_create(); 4040 proc_cpia_create();
4048#endif 4041#endif
4049 4042
4050#ifdef CONFIG_VIDEO_CPIA_PP
4051 cpia_pp_init();
4052#endif
4053#ifdef CONFIG_VIDEO_CPIA_USB
4054 cpia_usb_init();
4055#endif
4056
4057 return 0; 4043 return 0;
4058} 4044}
4059 4045