diff options
author | Ari Kauppi <Ext-Ari.Kauppi@nokia.com> | 2009-06-12 07:16:07 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-07-10 14:57:46 -0400 |
commit | c518a73e537a2c7b83e490335ddedb6465fa5f73 (patch) | |
tree | 00fe0bc1262e6c892f6022687973cdf4eaae74aa /drivers | |
parent | 8ec8beb28361864c82153fec5ddb82c9d636430f (diff) |
wl12xx: Fix incorrect warning message.
A warning message in wl12xx_acx_event_mbox_mask has a copy/paste
error. Fix it to print the correct acx command.
Signed-off-by: Ari Kauppi <Ext-Ari.Kauppi@nokia.com>
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/wl12xx/acx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/acx.c b/drivers/net/wireless/wl12xx/acx.c index a6b894573f0..8227d6db08c 100644 --- a/drivers/net/wireless/wl12xx/acx.c +++ b/drivers/net/wireless/wl12xx/acx.c | |||
@@ -735,7 +735,7 @@ int wl12xx_acx_event_mbox_mask(struct wl12xx *wl, u32 event_mask) | |||
735 | ret = wl12xx_cmd_configure(wl, ACX_EVENT_MBOX_MASK, | 735 | ret = wl12xx_cmd_configure(wl, ACX_EVENT_MBOX_MASK, |
736 | mask, sizeof(*mask)); | 736 | mask, sizeof(*mask)); |
737 | if (ret < 0) { | 737 | if (ret < 0) { |
738 | wl12xx_warning("failed to set aid: %d", ret); | 738 | wl12xx_warning("failed to set acx_event_mbox_mask: %d", ret); |
739 | goto out; | 739 | goto out; |
740 | } | 740 | } |
741 | 741 | ||