diff options
| -rw-r--r-- | drivers/mmc/host/wbsd.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/mmc/host/wbsd.c b/drivers/mmc/host/wbsd.c index 67e5a9b80f53..c2b61606c430 100644 --- a/drivers/mmc/host/wbsd.c +++ b/drivers/mmc/host/wbsd.c | |||
| @@ -68,16 +68,16 @@ static const int unlock_codes[] = { 0x83, 0x87 }; | |||
| 68 | 68 | ||
| 69 | static const int valid_ids[] = { | 69 | static const int valid_ids[] = { |
| 70 | 0x7112, | 70 | 0x7112, |
| 71 | }; | 71 | }; |
| 72 | 72 | ||
| 73 | #ifdef CONFIG_PNP | 73 | #ifdef CONFIG_PNP |
| 74 | static unsigned int nopnp = 0; | 74 | static unsigned int param_nopnp = 0; |
| 75 | #else | 75 | #else |
| 76 | static const unsigned int nopnp = 1; | 76 | static const unsigned int param_nopnp = 1; |
| 77 | #endif | 77 | #endif |
| 78 | static unsigned int io = 0x248; | 78 | static unsigned int param_io = 0x248; |
| 79 | static unsigned int irq = 6; | 79 | static unsigned int param_irq = 6; |
| 80 | static int dma = 2; | 80 | static int param_dma = 2; |
| 81 | 81 | ||
| 82 | /* | 82 | /* |
| 83 | * Basic functions | 83 | * Basic functions |
| @@ -1765,7 +1765,7 @@ static void __devexit wbsd_shutdown(struct device *dev, int pnp) | |||
| 1765 | static int __devinit wbsd_probe(struct platform_device *dev) | 1765 | static int __devinit wbsd_probe(struct platform_device *dev) |
| 1766 | { | 1766 | { |
| 1767 | /* Use the module parameters for resources */ | 1767 | /* Use the module parameters for resources */ |
| 1768 | return wbsd_init(&dev->dev, io, irq, dma, 0); | 1768 | return wbsd_init(&dev->dev, param_io, param_irq, param_dma, 0); |
| 1769 | } | 1769 | } |
| 1770 | 1770 | ||
| 1771 | static int __devexit wbsd_remove(struct platform_device *dev) | 1771 | static int __devexit wbsd_remove(struct platform_device *dev) |
| @@ -1979,14 +1979,14 @@ static int __init wbsd_drv_init(void) | |||
| 1979 | 1979 | ||
| 1980 | #ifdef CONFIG_PNP | 1980 | #ifdef CONFIG_PNP |
| 1981 | 1981 | ||
| 1982 | if (!nopnp) { | 1982 | if (!param_nopnp) { |
| 1983 | result = pnp_register_driver(&wbsd_pnp_driver); | 1983 | result = pnp_register_driver(&wbsd_pnp_driver); |
| 1984 | if (result < 0) | 1984 | if (result < 0) |
| 1985 | return result; | 1985 | return result; |
| 1986 | } | 1986 | } |
| 1987 | #endif /* CONFIG_PNP */ | 1987 | #endif /* CONFIG_PNP */ |
| 1988 | 1988 | ||
| 1989 | if (nopnp) { | 1989 | if (param_nopnp) { |
| 1990 | result = platform_driver_register(&wbsd_driver); | 1990 | result = platform_driver_register(&wbsd_driver); |
| 1991 | if (result < 0) | 1991 | if (result < 0) |
| 1992 | return result; | 1992 | return result; |
| @@ -2012,12 +2012,12 @@ static void __exit wbsd_drv_exit(void) | |||
| 2012 | { | 2012 | { |
| 2013 | #ifdef CONFIG_PNP | 2013 | #ifdef CONFIG_PNP |
| 2014 | 2014 | ||
| 2015 | if (!nopnp) | 2015 | if (!param_nopnp) |
| 2016 | pnp_unregister_driver(&wbsd_pnp_driver); | 2016 | pnp_unregister_driver(&wbsd_pnp_driver); |
| 2017 | 2017 | ||
| 2018 | #endif /* CONFIG_PNP */ | 2018 | #endif /* CONFIG_PNP */ |
| 2019 | 2019 | ||
| 2020 | if (nopnp) { | 2020 | if (param_nopnp) { |
| 2021 | platform_device_unregister(wbsd_device); | 2021 | platform_device_unregister(wbsd_device); |
| 2022 | 2022 | ||
| 2023 | platform_driver_unregister(&wbsd_driver); | 2023 | platform_driver_unregister(&wbsd_driver); |
| @@ -2029,11 +2029,11 @@ static void __exit wbsd_drv_exit(void) | |||
| 2029 | module_init(wbsd_drv_init); | 2029 | module_init(wbsd_drv_init); |
| 2030 | module_exit(wbsd_drv_exit); | 2030 | module_exit(wbsd_drv_exit); |
| 2031 | #ifdef CONFIG_PNP | 2031 | #ifdef CONFIG_PNP |
| 2032 | module_param(nopnp, uint, 0444); | 2032 | module_param_named(nopnp, param_nopnp, uint, 0444); |
| 2033 | #endif | 2033 | #endif |
| 2034 | module_param(io, uint, 0444); | 2034 | module_param_named(io, param_io, uint, 0444); |
| 2035 | module_param(irq, uint, 0444); | 2035 | module_param_named(irq, param_irq, uint, 0444); |
| 2036 | module_param(dma, int, 0444); | 2036 | module_param_named(dma, param_dma, int, 0444); |
| 2037 | 2037 | ||
| 2038 | MODULE_LICENSE("GPL"); | 2038 | MODULE_LICENSE("GPL"); |
| 2039 | MODULE_AUTHOR("Pierre Ossman <drzeus@drzeus.cx>"); | 2039 | MODULE_AUTHOR("Pierre Ossman <drzeus@drzeus.cx>"); |
