aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKalle Valo <kvalo@qca.qualcomm.com>2011-10-28 09:23:26 -0400
committerKalle Valo <kvalo@qca.qualcomm.com>2011-11-11 05:58:58 -0500
commitcd4b8b85800a47dc68b9282ffc3a88b82e77f242 (patch)
tree1f3a6f238357e623823a65f341d4ed831dc7e5e4
parent778e6502414a35e3db8f3637a600b6645ac0b815 (diff)
ath6kl: change name of sdio driver to ath6kl
Currently the name of the driver in struct sdio_driver is "ath6kl_sdio", this is for example what uevent advertises. This is wrong as the module is named as ath6kl.ko. Change it to "ath6kl" so that the names match. Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r--drivers/net/wireless/ath/ath6kl/sdio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/sdio.c b/drivers/net/wireless/ath/ath6kl/sdio.c
index 682c47ce9b64..56f83c40b8d8 100644
--- a/drivers/net/wireless/ath/ath6kl/sdio.c
+++ b/drivers/net/wireless/ath/ath6kl/sdio.c
@@ -914,7 +914,7 @@ static const struct sdio_device_id ath6kl_sdio_devices[] = {
914MODULE_DEVICE_TABLE(sdio, ath6kl_sdio_devices); 914MODULE_DEVICE_TABLE(sdio, ath6kl_sdio_devices);
915 915
916static struct sdio_driver ath6kl_sdio_driver = { 916static struct sdio_driver ath6kl_sdio_driver = {
917 .name = "ath6kl_sdio", 917 .name = "ath6kl",
918 .id_table = ath6kl_sdio_devices, 918 .id_table = ath6kl_sdio_devices,
919 .probe = ath6kl_sdio_probe, 919 .probe = ath6kl_sdio_probe,
920 .remove = ath6kl_sdio_remove, 920 .remove = ath6kl_sdio_remove,