diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-10 12:23:16 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:49 -0400 |
commit | 5d76fc219ce38a226314436563f6b9d405bb6db1 (patch) | |
tree | a74057527409fa33521760fabe0d487e3dd92bce /drivers/isdn | |
parent | 07a97fe8864a38cedd24a2c8c89cce8c3efd6095 (diff) |
drivers/isdn: Add export.h for EXPORT_SYMBOL/THIS_MODULE as required.
In preparation of the module.h usage cleanup, call out the header
that we need to get EXPORT_SYMBOL variants and THIS_MODULE into scope.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/capi/kcapi_proc.c | 1 | ||||
-rw-r--r-- | drivers/isdn/gigaset/asyncdata.c | 1 | ||||
-rw-r--r-- | drivers/isdn/gigaset/capi.c | 1 | ||||
-rw-r--r-- | drivers/isdn/gigaset/dummyll.c | 1 | ||||
-rw-r--r-- | drivers/isdn/gigaset/ev-layer.c | 1 | ||||
-rw-r--r-- | drivers/isdn/gigaset/i4l.c | 1 | ||||
-rw-r--r-- | drivers/isdn/mISDN/clock.c | 1 | ||||
-rw-r--r-- | drivers/isdn/mISDN/dsp_audio.c | 1 | ||||
-rw-r--r-- | drivers/isdn/mISDN/dsp_pipeline.c | 1 | ||||
-rw-r--r-- | drivers/isdn/mISDN/socket.c | 1 |
10 files changed, 10 insertions, 0 deletions
diff --git a/drivers/isdn/capi/kcapi_proc.c b/drivers/isdn/capi/kcapi_proc.c index ea2dff602e49..8d51cd1bf674 100644 --- a/drivers/isdn/capi/kcapi_proc.c +++ b/drivers/isdn/capi/kcapi_proc.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/proc_fs.h> | 14 | #include <linux/proc_fs.h> |
15 | #include <linux/seq_file.h> | 15 | #include <linux/seq_file.h> |
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/export.h> | ||
17 | 18 | ||
18 | static char *state2str(unsigned short state) | 19 | static char *state2str(unsigned short state) |
19 | { | 20 | { |
diff --git a/drivers/isdn/gigaset/asyncdata.c b/drivers/isdn/gigaset/asyncdata.c index c3b1dc3a13a0..fddae72e3f98 100644 --- a/drivers/isdn/gigaset/asyncdata.c +++ b/drivers/isdn/gigaset/asyncdata.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include "gigaset.h" | 16 | #include "gigaset.h" |
17 | #include <linux/crc-ccitt.h> | 17 | #include <linux/crc-ccitt.h> |
18 | #include <linux/bitrev.h> | 18 | #include <linux/bitrev.h> |
19 | #include <linux/export.h> | ||
19 | 20 | ||
20 | /* check if byte must be stuffed/escaped | 21 | /* check if byte must be stuffed/escaped |
21 | * I'm not sure which data should be encoded. | 22 | * I'm not sure which data should be encoded. |
diff --git a/drivers/isdn/gigaset/capi.c b/drivers/isdn/gigaset/capi.c index 658e75f18d05..6d5ceeece9f2 100644 --- a/drivers/isdn/gigaset/capi.c +++ b/drivers/isdn/gigaset/capi.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/isdn/capilli.h> | 17 | #include <linux/isdn/capilli.h> |
18 | #include <linux/isdn/capicmd.h> | 18 | #include <linux/isdn/capicmd.h> |
19 | #include <linux/isdn/capiutil.h> | 19 | #include <linux/isdn/capiutil.h> |
20 | #include <linux/export.h> | ||
20 | 21 | ||
21 | /* missing from kernelcapi.h */ | 22 | /* missing from kernelcapi.h */ |
22 | #define CapiNcpiNotSupportedByProtocol 0x0001 | 23 | #define CapiNcpiNotSupportedByProtocol 0x0001 |
diff --git a/drivers/isdn/gigaset/dummyll.c b/drivers/isdn/gigaset/dummyll.c index bd0b1eaa7572..19b1c779d50f 100644 --- a/drivers/isdn/gigaset/dummyll.c +++ b/drivers/isdn/gigaset/dummyll.c | |||
@@ -11,6 +11,7 @@ | |||
11 | * ===================================================================== | 11 | * ===================================================================== |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include <linux/export.h> | ||
14 | #include "gigaset.h" | 15 | #include "gigaset.h" |
15 | 16 | ||
16 | void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb) | 17 | void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb) |
diff --git a/drivers/isdn/gigaset/ev-layer.c b/drivers/isdn/gigaset/ev-layer.c index ba74646cf0e4..6d12623c1db0 100644 --- a/drivers/isdn/gigaset/ev-layer.c +++ b/drivers/isdn/gigaset/ev-layer.c | |||
@@ -13,6 +13,7 @@ | |||
13 | * ===================================================================== | 13 | * ===================================================================== |
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include <linux/export.h> | ||
16 | #include "gigaset.h" | 17 | #include "gigaset.h" |
17 | 18 | ||
18 | /* ========================================================== */ | 19 | /* ========================================================== */ |
diff --git a/drivers/isdn/gigaset/i4l.c b/drivers/isdn/gigaset/i4l.c index 9bec8b969964..04231cb2f031 100644 --- a/drivers/isdn/gigaset/i4l.c +++ b/drivers/isdn/gigaset/i4l.c | |||
@@ -15,6 +15,7 @@ | |||
15 | 15 | ||
16 | #include "gigaset.h" | 16 | #include "gigaset.h" |
17 | #include <linux/isdnif.h> | 17 | #include <linux/isdnif.h> |
18 | #include <linux/export.h> | ||
18 | 19 | ||
19 | #define SBUFSIZE 4096 /* sk_buff payload size */ | 20 | #define SBUFSIZE 4096 /* sk_buff payload size */ |
20 | #define TRANSBUFSIZE 768 /* bytes per skb for transparent receive */ | 21 | #define TRANSBUFSIZE 768 /* bytes per skb for transparent receive */ |
diff --git a/drivers/isdn/mISDN/clock.c b/drivers/isdn/mISDN/clock.c index 1fa629b3b940..7418f2d811d8 100644 --- a/drivers/isdn/mISDN/clock.c +++ b/drivers/isdn/mISDN/clock.c | |||
@@ -38,6 +38,7 @@ | |||
38 | #include <linux/stddef.h> | 38 | #include <linux/stddef.h> |
39 | #include <linux/spinlock.h> | 39 | #include <linux/spinlock.h> |
40 | #include <linux/mISDNif.h> | 40 | #include <linux/mISDNif.h> |
41 | #include <linux/export.h> | ||
41 | #include "core.h" | 42 | #include "core.h" |
42 | 43 | ||
43 | static u_int *debug; | 44 | static u_int *debug; |
diff --git a/drivers/isdn/mISDN/dsp_audio.c b/drivers/isdn/mISDN/dsp_audio.c index 9c7c6451bf3d..b8f18bd09e43 100644 --- a/drivers/isdn/mISDN/dsp_audio.c +++ b/drivers/isdn/mISDN/dsp_audio.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/delay.h> | 12 | #include <linux/delay.h> |
13 | #include <linux/mISDNif.h> | 13 | #include <linux/mISDNif.h> |
14 | #include <linux/mISDNdsp.h> | 14 | #include <linux/mISDNdsp.h> |
15 | #include <linux/export.h> | ||
15 | #include "core.h" | 16 | #include "core.h" |
16 | #include "dsp.h" | 17 | #include "dsp.h" |
17 | 18 | ||
diff --git a/drivers/isdn/mISDN/dsp_pipeline.c b/drivers/isdn/mISDN/dsp_pipeline.c index 621f31007095..b6c9a5889346 100644 --- a/drivers/isdn/mISDN/dsp_pipeline.c +++ b/drivers/isdn/mISDN/dsp_pipeline.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/string.h> | 30 | #include <linux/string.h> |
31 | #include <linux/mISDNif.h> | 31 | #include <linux/mISDNif.h> |
32 | #include <linux/mISDNdsp.h> | 32 | #include <linux/mISDNdsp.h> |
33 | #include <linux/export.h> | ||
33 | #include "dsp.h" | 34 | #include "dsp.h" |
34 | #include "dsp_hwec.h" | 35 | #include "dsp_hwec.h" |
35 | 36 | ||
diff --git a/drivers/isdn/mISDN/socket.c b/drivers/isdn/mISDN/socket.c index 8e325227b4c0..738ea8dd0adf 100644 --- a/drivers/isdn/mISDN/socket.c +++ b/drivers/isdn/mISDN/socket.c | |||
@@ -17,6 +17,7 @@ | |||
17 | 17 | ||
18 | #include <linux/mISDNif.h> | 18 | #include <linux/mISDNif.h> |
19 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
20 | #include <linux/export.h> | ||
20 | #include "core.h" | 21 | #include "core.h" |
21 | 22 | ||
22 | static u_int *debug; | 23 | static u_int *debug; |