diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-07-09 04:28:38 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-10-16 11:38:35 -0400 |
commit | a65e5d782f9db2a61a914dc01a329e0c2dcf92a1 (patch) | |
tree | 2143455a8bbcb49bbcef746e45f06e497f2eadfb /drivers/media/video | |
parent | 04ab591808565f968d4406f6435090ad671ebdab (diff) |
remove CONFIG_KMOD from drivers
Straight forward conversions to CONFIG_MODULE; many drivers
include <linux/kmod.h> conditionally and then don't have any
other conditional code so remove it from those.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Cc: video4linux-list@redhat.com
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: linux-ppp@vger.kernel.org
Cc: dm-devel@redhat.com
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/cpia.c | 4 | ||||
-rw-r--r-- | drivers/media/video/usbvision/usbvision-core.c | 4 | ||||
-rw-r--r-- | drivers/media/video/usbvision/usbvision-video.c | 4 | ||||
-rw-r--r-- | drivers/media/video/v4l1-compat.c | 4 | ||||
-rw-r--r-- | drivers/media/video/v4l2-common.c | 4 | ||||
-rw-r--r-- | drivers/media/video/vino.c | 5 | ||||
-rw-r--r-- | drivers/media/video/w9968cf.c | 4 |
7 files changed, 3 insertions, 26 deletions
diff --git a/drivers/media/video/cpia.c b/drivers/media/video/cpia.c index c325e926de8a..1798b779a25a 100644 --- a/drivers/media/video/cpia.c +++ b/drivers/media/video/cpia.c | |||
@@ -39,10 +39,6 @@ | |||
39 | #include <asm/io.h> | 39 | #include <asm/io.h> |
40 | #include <linux/mutex.h> | 40 | #include <linux/mutex.h> |
41 | 41 | ||
42 | #ifdef CONFIG_KMOD | ||
43 | #include <linux/kmod.h> | ||
44 | #endif | ||
45 | |||
46 | #include "cpia.h" | 42 | #include "cpia.h" |
47 | 43 | ||
48 | static int video_nr = -1; | 44 | static int video_nr = -1; |
diff --git a/drivers/media/video/usbvision/usbvision-core.c b/drivers/media/video/usbvision/usbvision-core.c index b26b563a0b0a..9e4f50639975 100644 --- a/drivers/media/video/usbvision/usbvision-core.c +++ b/drivers/media/video/usbvision/usbvision-core.c | |||
@@ -45,10 +45,6 @@ | |||
45 | 45 | ||
46 | #include <linux/workqueue.h> | 46 | #include <linux/workqueue.h> |
47 | 47 | ||
48 | #ifdef CONFIG_KMOD | ||
49 | #include <linux/kmod.h> | ||
50 | #endif | ||
51 | |||
52 | #include "usbvision.h" | 48 | #include "usbvision.h" |
53 | 49 | ||
54 | static unsigned int core_debug; | 50 | static unsigned int core_debug; |
diff --git a/drivers/media/video/usbvision/usbvision-video.c b/drivers/media/video/usbvision/usbvision-video.c index e10b256aeba4..77aeb39b2750 100644 --- a/drivers/media/video/usbvision/usbvision-video.c +++ b/drivers/media/video/usbvision/usbvision-video.c | |||
@@ -69,10 +69,6 @@ | |||
69 | 69 | ||
70 | #include <linux/workqueue.h> | 70 | #include <linux/workqueue.h> |
71 | 71 | ||
72 | #ifdef CONFIG_KMOD | ||
73 | #include <linux/kmod.h> | ||
74 | #endif | ||
75 | |||
76 | #include "usbvision.h" | 72 | #include "usbvision.h" |
77 | #include "usbvision-cards.h" | 73 | #include "usbvision-cards.h" |
78 | 74 | ||
diff --git a/drivers/media/video/v4l1-compat.c b/drivers/media/video/v4l1-compat.c index 79937d1031fc..928cb4037372 100644 --- a/drivers/media/video/v4l1-compat.c +++ b/drivers/media/video/v4l1-compat.c | |||
@@ -36,10 +36,6 @@ | |||
36 | #include <asm/system.h> | 36 | #include <asm/system.h> |
37 | #include <asm/pgtable.h> | 37 | #include <asm/pgtable.h> |
38 | 38 | ||
39 | #ifdef CONFIG_KMOD | ||
40 | #include <linux/kmod.h> | ||
41 | #endif | ||
42 | |||
43 | static unsigned int debug; | 39 | static unsigned int debug; |
44 | module_param(debug, int, 0644); | 40 | module_param(debug, int, 0644); |
45 | MODULE_PARM_DESC(debug, "enable debug messages"); | 41 | MODULE_PARM_DESC(debug, "enable debug messages"); |
diff --git a/drivers/media/video/v4l2-common.c b/drivers/media/video/v4l2-common.c index 20c3be8617ea..846763d7349e 100644 --- a/drivers/media/video/v4l2-common.c +++ b/drivers/media/video/v4l2-common.c | |||
@@ -60,10 +60,6 @@ | |||
60 | #include <media/v4l2-common.h> | 60 | #include <media/v4l2-common.h> |
61 | #include <media/v4l2-chip-ident.h> | 61 | #include <media/v4l2-chip-ident.h> |
62 | 62 | ||
63 | #ifdef CONFIG_KMOD | ||
64 | #include <linux/kmod.h> | ||
65 | #endif | ||
66 | |||
67 | #include <linux/videodev2.h> | 63 | #include <linux/videodev2.h> |
68 | 64 | ||
69 | MODULE_AUTHOR("Bill Dirks, Justin Schoeman, Gerd Knorr"); | 65 | MODULE_AUTHOR("Bill Dirks, Justin Schoeman, Gerd Knorr"); |
diff --git a/drivers/media/video/vino.c b/drivers/media/video/vino.c index 8ec57df1904f..1efc5f3462c6 100644 --- a/drivers/media/video/vino.c +++ b/drivers/media/video/vino.c | |||
@@ -30,10 +30,7 @@ | |||
30 | #include <linux/mm.h> | 30 | #include <linux/mm.h> |
31 | #include <linux/time.h> | 31 | #include <linux/time.h> |
32 | #include <linux/version.h> | 32 | #include <linux/version.h> |
33 | |||
34 | #ifdef CONFIG_KMOD | ||
35 | #include <linux/kmod.h> | 33 | #include <linux/kmod.h> |
36 | #endif | ||
37 | 34 | ||
38 | #include <linux/i2c.h> | 35 | #include <linux/i2c.h> |
39 | #include <linux/i2c-algo-sgi.h> | 36 | #include <linux/i2c-algo-sgi.h> |
@@ -4634,7 +4631,7 @@ static int __init vino_module_init(void) | |||
4634 | } | 4631 | } |
4635 | vino_init_stage++; | 4632 | vino_init_stage++; |
4636 | 4633 | ||
4637 | #if defined(CONFIG_KMOD) && defined(MODULE) | 4634 | #ifdef MODULE |
4638 | request_module("saa7191"); | 4635 | request_module("saa7191"); |
4639 | request_module("indycam"); | 4636 | request_module("indycam"); |
4640 | #endif | 4637 | #endif |
diff --git a/drivers/media/video/w9968cf.c b/drivers/media/video/w9968cf.c index 11edf79f57be..dcd45dbd82dc 100644 --- a/drivers/media/video/w9968cf.c +++ b/drivers/media/video/w9968cf.c | |||
@@ -111,7 +111,7 @@ static int specific_debug = W9968CF_SPECIFIC_DEBUG; | |||
111 | 111 | ||
112 | static unsigned int param_nv[24]; /* number of values per parameter */ | 112 | static unsigned int param_nv[24]; /* number of values per parameter */ |
113 | 113 | ||
114 | #ifdef CONFIG_KMOD | 114 | #ifdef CONFIG_MODULES |
115 | module_param(ovmod_load, bool, 0644); | 115 | module_param(ovmod_load, bool, 0644); |
116 | #endif | 116 | #endif |
117 | module_param(simcams, ushort, 0644); | 117 | module_param(simcams, ushort, 0644); |
@@ -144,7 +144,7 @@ module_param(debug, ushort, 0644); | |||
144 | module_param(specific_debug, bool, 0644); | 144 | module_param(specific_debug, bool, 0644); |
145 | #endif | 145 | #endif |
146 | 146 | ||
147 | #ifdef CONFIG_KMOD | 147 | #ifdef CONFIG_MODULES |
148 | MODULE_PARM_DESC(ovmod_load, | 148 | MODULE_PARM_DESC(ovmod_load, |
149 | "\n<0|1> Automatic 'ovcamchip' module loading." | 149 | "\n<0|1> Automatic 'ovcamchip' module loading." |
150 | "\n0 disabled, 1 enabled." | 150 | "\n0 disabled, 1 enabled." |