diff options
author | Danny Kukawka <danny.kukawka@bisect.de> | 2012-01-30 23:00:10 +0100 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2012-02-14 08:45:03 -0800 |
commit | 309c665110ee6a8d9a28f802c41eaab50ceebbf7 (patch) | |
tree | e0b3fa4dd0c6e0535314118597151e01c2479568 | |
parent | 26f41062f28de65e11d3cf353e52d0be73442be1 (diff) | |
download | linux-3.10-309c665110ee6a8d9a28f802c41eaab50ceebbf7.tar.gz linux-3.10-309c665110ee6a8d9a28f802c41eaab50ceebbf7.tar.bz2 linux-3.10-309c665110ee6a8d9a28f802c41eaab50ceebbf7.zip |
PCI hotplug: cpcihp: fix debug module parameter to be bool
Fix debug variable from module parameter to be really bool to
fix 'warning: return from incompatible pointer type'.
Acked-by: Scott Murray <scott@spiteful.org>
Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r-- | drivers/pci/hotplug/cpcihp_generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/cpcihp_generic.c b/drivers/pci/hotplug/cpcihp_generic.c index fb3f84661bd..81af764c629 100644 --- a/drivers/pci/hotplug/cpcihp_generic.c +++ b/drivers/pci/hotplug/cpcihp_generic.c @@ -62,7 +62,7 @@ #define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME , ## arg) /* local variables */ -static int debug; +static bool debug; static char *bridge; static u8 bridge_busnr; static u8 bridge_slot; |