aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/wbsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/wbsd.c')
-rw-r--r--drivers/mmc/wbsd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/mmc/wbsd.c b/drivers/mmc/wbsd.c
index ea23a31fac90..c7eb7c269081 100644
--- a/drivers/mmc/wbsd.c
+++ b/drivers/mmc/wbsd.c
@@ -42,7 +42,7 @@
42#include "wbsd.h" 42#include "wbsd.h"
43 43
44#define DRIVER_NAME "wbsd" 44#define DRIVER_NAME "wbsd"
45#define DRIVER_VERSION "1.4" 45#define DRIVER_VERSION "1.5"
46 46
47#ifdef CONFIG_MMC_DEBUG 47#ifdef CONFIG_MMC_DEBUG
48#define DBG(x...) \ 48#define DBG(x...) \
@@ -2040,7 +2040,7 @@ static struct platform_device *wbsd_device;
2040 2040
2041static struct platform_driver wbsd_driver = { 2041static struct platform_driver wbsd_driver = {
2042 .probe = wbsd_probe, 2042 .probe = wbsd_probe,
2043 .remove = wbsd_remove, 2043 .remove = __devexit_p(wbsd_remove),
2044 2044
2045 .suspend = wbsd_suspend, 2045 .suspend = wbsd_suspend,
2046 .resume = wbsd_resume, 2046 .resume = wbsd_resume,
@@ -2055,7 +2055,7 @@ static struct pnp_driver wbsd_pnp_driver = {
2055 .name = DRIVER_NAME, 2055 .name = DRIVER_NAME,
2056 .id_table = pnp_dev_table, 2056 .id_table = pnp_dev_table,
2057 .probe = wbsd_pnp_probe, 2057 .probe = wbsd_pnp_probe,
2058 .remove = wbsd_pnp_remove, 2058 .remove = __devexit_p(wbsd_pnp_remove),
2059}; 2059};
2060 2060
2061#endif /* CONFIG_PNP */ 2061#endif /* CONFIG_PNP */
@@ -2128,6 +2128,7 @@ module_param(irq, uint, 0444);
2128module_param(dma, int, 0444); 2128module_param(dma, int, 0444);
2129 2129
2130MODULE_LICENSE("GPL"); 2130MODULE_LICENSE("GPL");
2131MODULE_AUTHOR("Pierre Ossman <drzeus@drzeus.cx>");
2131MODULE_DESCRIPTION("Winbond W83L51xD SD/MMC card interface driver"); 2132MODULE_DESCRIPTION("Winbond W83L51xD SD/MMC card interface driver");
2132MODULE_VERSION(DRIVER_VERSION); 2133MODULE_VERSION(DRIVER_VERSION);
2133 2134