aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 e954b8354fef..6166ceb95717 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...) \
@@ -2042,7 +2042,7 @@ static struct device_driver wbsd_driver = {
2042 .name = DRIVER_NAME, 2042 .name = DRIVER_NAME,
2043 .bus = &platform_bus_type, 2043 .bus = &platform_bus_type,
2044 .probe = wbsd_probe, 2044 .probe = wbsd_probe,
2045 .remove = wbsd_remove, 2045 .remove = __devexit_p(wbsd_remove),
2046 2046
2047 .suspend = wbsd_suspend, 2047 .suspend = wbsd_suspend,
2048 .resume = wbsd_resume, 2048 .resume = wbsd_resume,
@@ -2054,7 +2054,7 @@ static struct pnp_driver wbsd_pnp_driver = {
2054 .name = DRIVER_NAME, 2054 .name = DRIVER_NAME,
2055 .id_table = pnp_dev_table, 2055 .id_table = pnp_dev_table,
2056 .probe = wbsd_pnp_probe, 2056 .probe = wbsd_pnp_probe,
2057 .remove = wbsd_pnp_remove, 2057 .remove = __devexit_p(wbsd_pnp_remove),
2058}; 2058};
2059 2059
2060#endif /* CONFIG_PNP */ 2060#endif /* CONFIG_PNP */
@@ -2127,6 +2127,7 @@ module_param(irq, uint, 0444);
2127module_param(dma, int, 0444); 2127module_param(dma, int, 0444);
2128 2128
2129MODULE_LICENSE("GPL"); 2129MODULE_LICENSE("GPL");
2130MODULE_AUTHOR("Pierre Ossman <drzeus@drzeus.cx>");
2130MODULE_DESCRIPTION("Winbond W83L51xD SD/MMC card interface driver"); 2131MODULE_DESCRIPTION("Winbond W83L51xD SD/MMC card interface driver");
2131MODULE_VERSION(DRIVER_VERSION); 2132MODULE_VERSION(DRIVER_VERSION);
2132 2133