diff options
author | Luciano Coelho <luciano.coelho@nokia.com> | 2010-04-01 10:38:17 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-04-06 22:55:11 +0200 |
commit | f4b5d8d874b245ec3bf1ed356476e74a346705a2 (patch) | |
tree | 6321b714b0802c123e4048a547615ca28760e0ed | |
parent | ath9k_htc: Add TL-WN422G v2 product ID (diff) | |
download | linux-f4b5d8d874b245ec3bf1ed356476e74a346705a2.tar.xz linux-f4b5d8d874b245ec3bf1ed356476e74a346705a2.zip |
wl1271: fix sdio driver name in wl1271_sdio_driver
Our SPI driver is called "wl1271_spi" in the driver information structure.
Let's use the same for SDIO so that things are aligned.
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Reviewed-by: Teemu Paasikivi <ext-teemu.3.paasikivi@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_sdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_sdio.c b/drivers/net/wireless/wl12xx/wl1271_sdio.c index abfe75b68601..d3d6f302f705 100644 --- a/drivers/net/wireless/wl12xx/wl1271_sdio.c +++ b/drivers/net/wireless/wl12xx/wl1271_sdio.c @@ -255,7 +255,7 @@ static void __devexit wl1271_remove(struct sdio_func *func) } static struct sdio_driver wl1271_sdio_driver = { - .name = "wl1271", + .name = "wl1271_sdio", .id_table = wl1271_devices, .probe = wl1271_probe, .remove = __devexit_p(wl1271_remove), |