diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2008-04-28 05:14:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:34 -0400 |
commit | 37772ac0fcc6728df47e6b0609766b7b77a8064b (patch) | |
tree | 0491d2e80051800b8576265d62e48ce10d2c2ddf /drivers/isdn | |
parent | c24e9b3fa3fdfca3834eba0bb217c8c197a43b7e (diff) |
isdn: rename CONFIG_AVMB1_COMPAT to not look like a Kconfig variable
Since CONFIG_AVMB1_COMPAT is not a Kconfig variable, move it out of the
Kconfig namespace.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Acked-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/capi/kcapi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/isdn/capi/kcapi.c b/drivers/isdn/capi/kcapi.c index 063de5a29fcf..75726ea0fbbd 100644 --- a/drivers/isdn/capi/kcapi.c +++ b/drivers/isdn/capi/kcapi.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * | 10 | * |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #define CONFIG_AVMB1_COMPAT | 13 | #define AVMB1_COMPAT |
14 | 14 | ||
15 | #include "kcapi.h" | 15 | #include "kcapi.h" |
16 | #include <linux/module.h> | 16 | #include <linux/module.h> |
@@ -29,7 +29,7 @@ | |||
29 | #include <asm/uaccess.h> | 29 | #include <asm/uaccess.h> |
30 | #include <linux/isdn/capicmd.h> | 30 | #include <linux/isdn/capicmd.h> |
31 | #include <linux/isdn/capiutil.h> | 31 | #include <linux/isdn/capiutil.h> |
32 | #ifdef CONFIG_AVMB1_COMPAT | 32 | #ifdef AVMB1_COMPAT |
33 | #include <linux/b1lli.h> | 33 | #include <linux/b1lli.h> |
34 | #endif | 34 | #endif |
35 | #include <linux/mutex.h> | 35 | #include <linux/mutex.h> |
@@ -740,7 +740,7 @@ u16 capi20_get_profile(u32 contr, struct capi_profile *profp) | |||
740 | 740 | ||
741 | EXPORT_SYMBOL(capi20_get_profile); | 741 | EXPORT_SYMBOL(capi20_get_profile); |
742 | 742 | ||
743 | #ifdef CONFIG_AVMB1_COMPAT | 743 | #ifdef AVMB1_COMPAT |
744 | static int old_capi_manufacturer(unsigned int cmd, void __user *data) | 744 | static int old_capi_manufacturer(unsigned int cmd, void __user *data) |
745 | { | 745 | { |
746 | avmb1_loadandconfigdef ldef; | 746 | avmb1_loadandconfigdef ldef; |
@@ -904,7 +904,7 @@ int capi20_manufacturer(unsigned int cmd, void __user *data) | |||
904 | struct capi_ctr *card; | 904 | struct capi_ctr *card; |
905 | 905 | ||
906 | switch (cmd) { | 906 | switch (cmd) { |
907 | #ifdef CONFIG_AVMB1_COMPAT | 907 | #ifdef AVMB1_COMPAT |
908 | case AVMB1_LOAD: | 908 | case AVMB1_LOAD: |
909 | case AVMB1_LOAD_AND_CONFIG: | 909 | case AVMB1_LOAD_AND_CONFIG: |
910 | case AVMB1_RESETCARD: | 910 | case AVMB1_RESETCARD: |