Commit 5d9bc1fa47f0c1561f1d7c0bdff5e24860852b42
Committed by
Jesse Barnes
1 parent
c9bbb4abb6
Exists in
master
and in
39 other branches
PCI hotplug: rpaphp: make debug var unique
Change debug variable name to one more unique to this driver. Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Showing 3 changed files with 5 additions and 5 deletions Side-by-side Diff
drivers/pci/hotplug/rpaphp.h
... | ... | @@ -46,10 +46,10 @@ |
46 | 46 | #define PRESENT 1 /* Card in slot */ |
47 | 47 | |
48 | 48 | #define MY_NAME "rpaphp" |
49 | -extern int debug; | |
49 | +extern int rpaphp_debug; | |
50 | 50 | #define dbg(format, arg...) \ |
51 | 51 | do { \ |
52 | - if (debug) \ | |
52 | + if (rpaphp_debug) \ | |
53 | 53 | printk(KERN_DEBUG "%s: " format, \ |
54 | 54 | MY_NAME , ## arg); \ |
55 | 55 | } while (0) |
drivers/pci/hotplug/rpaphp_core.c
... | ... | @@ -37,7 +37,7 @@ |
37 | 37 | /* and pci_do_scan_bus */ |
38 | 38 | #include "rpaphp.h" |
39 | 39 | |
40 | -int debug; | |
40 | +int rpaphp_debug; | |
41 | 41 | LIST_HEAD(rpaphp_slot_head); |
42 | 42 | |
43 | 43 | #define DRIVER_VERSION "0.1" |
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 | MODULE_DESCRIPTION(DRIVER_DESC); |
51 | 51 | MODULE_LICENSE("GPL"); |
52 | 52 | |
53 | -module_param(debug, bool, 0644); | |
53 | +module_param_named(debug, rpaphp_debug, bool, 0644); | |
54 | 54 | |
55 | 55 | /** |
56 | 56 | * set_attention_status - set attention LED |
drivers/pci/hotplug/rpaphp_pci.c