diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-02 15:02:01 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-08-22 19:55:06 -0400 |
commit | 7d16b658bd093e75a9f72a69e2dafd2b154c4395 (patch) | |
tree | a22437b255797e45befccb595caedd438b35865a /drivers | |
parent | 2bccc2a89012173f48a690caea7d9e4b3e950db9 (diff) |
pcmcia: don't add extra DEBUG cflag
Use CONFIG_PCMCIA_DEBUG instead of DEBUG so that dev_dbg() and other tricks
work properly.
(includes bugfixes from and
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
)
Signed-off-by: Dominik Broodwski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pcmcia/Makefile | 4 | ||||
-rw-r--r-- | drivers/pcmcia/cs.c | 2 | ||||
-rw-r--r-- | drivers/pcmcia/cs_internal.h | 2 | ||||
-rw-r--r-- | drivers/pcmcia/ds.c | 2 | ||||
-rw-r--r-- | drivers/pcmcia/i82365.c | 2 | ||||
-rw-r--r-- | drivers/pcmcia/m32r_cfc.c | 4 | ||||
-rw-r--r-- | drivers/pcmcia/m32r_pcc.c | 4 | ||||
-rw-r--r-- | drivers/pcmcia/m8xx_pcmcia.c | 4 | ||||
-rw-r--r-- | drivers/pcmcia/pcmcia_ioctl.c | 2 | ||||
-rw-r--r-- | drivers/pcmcia/pcmcia_resource.c | 2 | ||||
-rw-r--r-- | drivers/pcmcia/soc_common.c | 2 | ||||
-rw-r--r-- | drivers/pcmcia/soc_common.h | 2 | ||||
-rw-r--r-- | drivers/pcmcia/tcic.c | 2 |
13 files changed, 15 insertions, 19 deletions
diff --git a/drivers/pcmcia/Makefile b/drivers/pcmcia/Makefile index 269a9e913ba2..2ea5d46a4033 100644 --- a/drivers/pcmcia/Makefile +++ b/drivers/pcmcia/Makefile | |||
@@ -2,10 +2,6 @@ | |||
2 | # Makefile for the kernel pcmcia subsystem (c/o David Hinds) | 2 | # Makefile for the kernel pcmcia subsystem (c/o David Hinds) |
3 | # | 3 | # |
4 | 4 | ||
5 | ifeq ($(CONFIG_PCMCIA_DEBUG),y) | ||
6 | EXTRA_CFLAGS += -DDEBUG | ||
7 | endif | ||
8 | |||
9 | pcmcia_core-y += cs.o cistpl.o rsrc_mgr.o socket_sysfs.o | 5 | pcmcia_core-y += cs.o cistpl.o rsrc_mgr.o socket_sysfs.o |
10 | pcmcia_core-$(CONFIG_CARDBUS) += cardbus.o | 6 | pcmcia_core-$(CONFIG_CARDBUS) += cardbus.o |
11 | obj-$(CONFIG_PCCARD) += pcmcia_core.o | 7 | obj-$(CONFIG_PCCARD) += pcmcia_core.o |
diff --git a/drivers/pcmcia/cs.c b/drivers/pcmcia/cs.c index ceb2b0c39a6f..ccdbbe4936fd 100644 --- a/drivers/pcmcia/cs.c +++ b/drivers/pcmcia/cs.c | |||
@@ -61,7 +61,7 @@ INT_MODULE_PARM(unreset_limit, 30); /* unreset_check's */ | |||
61 | /* Access speed for attribute memory windows */ | 61 | /* Access speed for attribute memory windows */ |
62 | INT_MODULE_PARM(cis_speed, 300); /* ns */ | 62 | INT_MODULE_PARM(cis_speed, 300); /* ns */ |
63 | 63 | ||
64 | #ifdef DEBUG | 64 | #ifdef CONFIG_PCMCIA_DEBUG |
65 | static int pc_debug; | 65 | static int pc_debug; |
66 | 66 | ||
67 | module_param(pc_debug, int, 0644); | 67 | module_param(pc_debug, int, 0644); |
diff --git a/drivers/pcmcia/cs_internal.h b/drivers/pcmcia/cs_internal.h index bca83bbfdbda..481a823c94b4 100644 --- a/drivers/pcmcia/cs_internal.h +++ b/drivers/pcmcia/cs_internal.h | |||
@@ -130,7 +130,7 @@ struct pcmcia_callback{ | |||
130 | 130 | ||
131 | int pccard_register_pcmcia(struct pcmcia_socket *s, struct pcmcia_callback *c); | 131 | int pccard_register_pcmcia(struct pcmcia_socket *s, struct pcmcia_callback *c); |
132 | 132 | ||
133 | #ifdef DEBUG | 133 | #ifdef CONFIG_PCMCIA_DEBUG |
134 | extern int cs_debug_level(int); | 134 | extern int cs_debug_level(int); |
135 | 135 | ||
136 | #define cs_dbg(skt, lvl, fmt, arg...) do { \ | 136 | #define cs_dbg(skt, lvl, fmt, arg...) do { \ |
diff --git a/drivers/pcmcia/ds.c b/drivers/pcmcia/ds.c index 57e462e1c592..6501a968a640 100644 --- a/drivers/pcmcia/ds.c +++ b/drivers/pcmcia/ds.c | |||
@@ -42,7 +42,7 @@ MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>"); | |||
42 | MODULE_DESCRIPTION("PCMCIA Driver Services"); | 42 | MODULE_DESCRIPTION("PCMCIA Driver Services"); |
43 | MODULE_LICENSE("GPL"); | 43 | MODULE_LICENSE("GPL"); |
44 | 44 | ||
45 | #ifdef DEBUG | 45 | #ifdef CONFIG_PCMCIA_DEBUG |
46 | int ds_pc_debug; | 46 | int ds_pc_debug; |
47 | 47 | ||
48 | module_param_named(pc_debug, ds_pc_debug, int, 0644); | 48 | module_param_named(pc_debug, ds_pc_debug, int, 0644); |
diff --git a/drivers/pcmcia/i82365.c b/drivers/pcmcia/i82365.c index 68f6b2702bc4..71653ab84890 100644 --- a/drivers/pcmcia/i82365.c +++ b/drivers/pcmcia/i82365.c | |||
@@ -63,7 +63,7 @@ | |||
63 | #include "vg468.h" | 63 | #include "vg468.h" |
64 | #include "ricoh.h" | 64 | #include "ricoh.h" |
65 | 65 | ||
66 | #ifdef DEBUG | 66 | #ifdef CONFIG_PCMCIA_DEBUG |
67 | static const char version[] = | 67 | static const char version[] = |
68 | "i82365.c 1.265 1999/11/10 18:36:21 (David Hinds)"; | 68 | "i82365.c 1.265 1999/11/10 18:36:21 (David Hinds)"; |
69 | 69 | ||
diff --git a/drivers/pcmcia/m32r_cfc.c b/drivers/pcmcia/m32r_cfc.c index 3616da227152..2ab4f22c21de 100644 --- a/drivers/pcmcia/m32r_cfc.c +++ b/drivers/pcmcia/m32r_cfc.c | |||
@@ -38,7 +38,7 @@ | |||
38 | 38 | ||
39 | #include "m32r_cfc.h" | 39 | #include "m32r_cfc.h" |
40 | 40 | ||
41 | #ifdef DEBUG | 41 | #ifdef CONFIG_PCMCIA_DEBUG |
42 | static int m32r_cfc_debug; | 42 | static int m32r_cfc_debug; |
43 | module_param(m32r_cfc_debug, int, 0644); | 43 | module_param(m32r_cfc_debug, int, 0644); |
44 | #define debug(lvl, fmt, arg...) do { \ | 44 | #define debug(lvl, fmt, arg...) do { \ |
@@ -505,7 +505,7 @@ static int _pcc_set_socket(u_short sock, socket_state_t *state) | |||
505 | pcc_set(sock,(unsigned int)PLD_CFBUFCR,1); | 505 | pcc_set(sock,(unsigned int)PLD_CFBUFCR,1); |
506 | } | 506 | } |
507 | 507 | ||
508 | #ifdef DEBUG | 508 | #ifdef CONFIG_PCMCIA_DEBUG |
509 | if(state->flags & SS_IOCARD){ | 509 | if(state->flags & SS_IOCARD){ |
510 | debug(3, ":IOCARD"); | 510 | debug(3, ":IOCARD"); |
511 | } | 511 | } |
diff --git a/drivers/pcmcia/m32r_pcc.c b/drivers/pcmcia/m32r_pcc.c index 2b42b7155e34..2f108c23dbd9 100644 --- a/drivers/pcmcia/m32r_pcc.c +++ b/drivers/pcmcia/m32r_pcc.c | |||
@@ -45,7 +45,7 @@ | |||
45 | 45 | ||
46 | #define PCC_DEBUG_DBEX | 46 | #define PCC_DEBUG_DBEX |
47 | 47 | ||
48 | #ifdef DEBUG | 48 | #ifdef CONFIG_PCMCIA_DEBUG |
49 | static int m32r_pcc_debug; | 49 | static int m32r_pcc_debug; |
50 | module_param(m32r_pcc_debug, int, 0644); | 50 | module_param(m32r_pcc_debug, int, 0644); |
51 | #define debug(lvl, fmt, arg...) do { \ | 51 | #define debug(lvl, fmt, arg...) do { \ |
@@ -460,7 +460,7 @@ static int _pcc_set_socket(u_short sock, socket_state_t *state) | |||
460 | 460 | ||
461 | pcc_set(sock,PCCSIGCR,reg); | 461 | pcc_set(sock,PCCSIGCR,reg); |
462 | 462 | ||
463 | #ifdef DEBUG | 463 | #ifdef CONFIG_PCMCIA_DEBUG |
464 | if(state->flags & SS_IOCARD){ | 464 | if(state->flags & SS_IOCARD){ |
465 | debug(3, ":IOCARD"); | 465 | debug(3, ":IOCARD"); |
466 | } | 466 | } |
diff --git a/drivers/pcmcia/m8xx_pcmcia.c b/drivers/pcmcia/m8xx_pcmcia.c index ff66604e90d4..d1ad0966392d 100644 --- a/drivers/pcmcia/m8xx_pcmcia.c +++ b/drivers/pcmcia/m8xx_pcmcia.c | |||
@@ -64,8 +64,8 @@ | |||
64 | #include <pcmcia/cs.h> | 64 | #include <pcmcia/cs.h> |
65 | #include <pcmcia/ss.h> | 65 | #include <pcmcia/ss.h> |
66 | 66 | ||
67 | #ifdef PCMCIA_DEBUG | 67 | #ifdef CONFIG_PCMCIA_DEBUG |
68 | static int pc_debug = PCMCIA_DEBUG; | 68 | static int pc_debug; |
69 | module_param(pc_debug, int, 0); | 69 | module_param(pc_debug, int, 0); |
70 | #define dprintk(args...) printk(KERN_DEBUG "m8xx_pcmcia: " args); | 70 | #define dprintk(args...) printk(KERN_DEBUG "m8xx_pcmcia: " args); |
71 | #else | 71 | #else |
diff --git a/drivers/pcmcia/pcmcia_ioctl.c b/drivers/pcmcia/pcmcia_ioctl.c index 419f97fc9a62..0492d2df01a1 100644 --- a/drivers/pcmcia/pcmcia_ioctl.c +++ b/drivers/pcmcia/pcmcia_ioctl.c | |||
@@ -58,7 +58,7 @@ typedef struct user_info_t { | |||
58 | } user_info_t; | 58 | } user_info_t; |
59 | 59 | ||
60 | 60 | ||
61 | #ifdef DEBUG | 61 | #ifdef CONFIG_PCMCIA_DEBUG |
62 | extern int ds_pc_debug; | 62 | extern int ds_pc_debug; |
63 | 63 | ||
64 | #define ds_dbg(lvl, fmt, arg...) do { \ | 64 | #define ds_dbg(lvl, fmt, arg...) do { \ |
diff --git a/drivers/pcmcia/pcmcia_resource.c b/drivers/pcmcia/pcmcia_resource.c index 79058825c6f2..2c636058f493 100644 --- a/drivers/pcmcia/pcmcia_resource.c +++ b/drivers/pcmcia/pcmcia_resource.c | |||
@@ -44,7 +44,7 @@ static u8 pcmcia_used_irq[NR_IRQS]; | |||
44 | #endif | 44 | #endif |
45 | 45 | ||
46 | 46 | ||
47 | #ifdef DEBUG | 47 | #ifdef CONFIG_PCMCIA_DEBUG |
48 | extern int ds_pc_debug; | 48 | extern int ds_pc_debug; |
49 | 49 | ||
50 | #define ds_dbg(skt, lvl, fmt, arg...) do { \ | 50 | #define ds_dbg(skt, lvl, fmt, arg...) do { \ |
diff --git a/drivers/pcmcia/soc_common.c b/drivers/pcmcia/soc_common.c index 8c21446996f2..89edcbc3bfd2 100644 --- a/drivers/pcmcia/soc_common.c +++ b/drivers/pcmcia/soc_common.c | |||
@@ -54,7 +54,7 @@ | |||
54 | #include <asm/arch/pxa-regs.h> | 54 | #include <asm/arch/pxa-regs.h> |
55 | #endif | 55 | #endif |
56 | 56 | ||
57 | #ifdef DEBUG | 57 | #ifdef CONFIG_PCMCIA_DEBUG |
58 | 58 | ||
59 | static int pc_debug; | 59 | static int pc_debug; |
60 | module_param(pc_debug, int, 0644); | 60 | module_param(pc_debug, int, 0644); |
diff --git a/drivers/pcmcia/soc_common.h b/drivers/pcmcia/soc_common.h index 91ef6a0da3ab..8e4cc92bbe73 100644 --- a/drivers/pcmcia/soc_common.h +++ b/drivers/pcmcia/soc_common.h | |||
@@ -137,7 +137,7 @@ extern int soc_common_drv_pcmcia_probe(struct device *dev, struct pcmcia_low_lev | |||
137 | extern int soc_common_drv_pcmcia_remove(struct device *dev); | 137 | extern int soc_common_drv_pcmcia_remove(struct device *dev); |
138 | 138 | ||
139 | 139 | ||
140 | #ifdef DEBUG | 140 | #ifdef CONFIG_PCMCIA_DEBUG |
141 | 141 | ||
142 | extern void soc_pcmcia_debug(struct soc_pcmcia_socket *skt, const char *func, | 142 | extern void soc_pcmcia_debug(struct soc_pcmcia_socket *skt, const char *func, |
143 | int lvl, const char *fmt, ...); | 143 | int lvl, const char *fmt, ...); |
diff --git a/drivers/pcmcia/tcic.c b/drivers/pcmcia/tcic.c index 5792bd5c54f9..2a613e920fd4 100644 --- a/drivers/pcmcia/tcic.c +++ b/drivers/pcmcia/tcic.c | |||
@@ -55,7 +55,7 @@ | |||
55 | #include <pcmcia/ss.h> | 55 | #include <pcmcia/ss.h> |
56 | #include "tcic.h" | 56 | #include "tcic.h" |
57 | 57 | ||
58 | #ifdef DEBUG | 58 | #ifdef CONFIG_PCMCIA_DEBUG |
59 | static int pc_debug; | 59 | static int pc_debug; |
60 | 60 | ||
61 | module_param(pc_debug, int, 0644); | 61 | module_param(pc_debug, int, 0644); |