diff options
author | Stefan Weil <weil@mail.berlios.de> | 2009-07-19 09:00:39 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-07-24 15:05:26 -0400 |
commit | da3c821f549419e09b4b64f07d99f52174daae6d (patch) | |
tree | dec1997006cd64bce4e070e299b2a8d0eb0d5795 /drivers/net/wireless/wl12xx | |
parent | 4951348109c334f2b839816bd161522d089cb782 (diff) |
wl12xx: fix spelling
Changes (comments and debug output):
* couldnt -> couldn't
* frmware -> firmware
* recevied -> received
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Acked-by: Kalle Valo <kalle.valo@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1251_acx.c | 4 | ||||
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1251_ops.c | 4 | ||||
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1251_rx.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1251_acx.c b/drivers/net/wireless/wl12xx/wl1251_acx.c index 5a8d21c3192d..a46c92a29526 100644 --- a/drivers/net/wireless/wl12xx/wl1251_acx.c +++ b/drivers/net/wireless/wl12xx/wl1251_acx.c | |||
@@ -84,7 +84,7 @@ int wl1251_acx_default_key(struct wl1251 *wl, u8 key_id) | |||
84 | ret = wl1251_cmd_configure(wl, DOT11_DEFAULT_KEY, | 84 | ret = wl1251_cmd_configure(wl, DOT11_DEFAULT_KEY, |
85 | default_key, sizeof(*default_key)); | 85 | default_key, sizeof(*default_key)); |
86 | if (ret < 0) { | 86 | if (ret < 0) { |
87 | wl1251_error("Couldnt set default key"); | 87 | wl1251_error("Couldn't set default key"); |
88 | goto out; | 88 | goto out; |
89 | } | 89 | } |
90 | 90 | ||
@@ -231,7 +231,7 @@ int wl1251_acx_feature_cfg(struct wl1251 *wl) | |||
231 | ret = wl1251_cmd_configure(wl, ACX_FEATURE_CFG, | 231 | ret = wl1251_cmd_configure(wl, ACX_FEATURE_CFG, |
232 | feature, sizeof(*feature)); | 232 | feature, sizeof(*feature)); |
233 | if (ret < 0) { | 233 | if (ret < 0) { |
234 | wl1251_error("Couldnt set HW encryption"); | 234 | wl1251_error("Couldn't set HW encryption"); |
235 | goto out; | 235 | goto out; |
236 | } | 236 | } |
237 | 237 | ||
diff --git a/drivers/net/wireless/wl12xx/wl1251_ops.c b/drivers/net/wireless/wl12xx/wl1251_ops.c index 96a45f595297..e7b9aab3682f 100644 --- a/drivers/net/wireless/wl12xx/wl1251_ops.c +++ b/drivers/net/wireless/wl12xx/wl1251_ops.c | |||
@@ -423,7 +423,7 @@ static void wl1251_irq_work(struct work_struct *work) | |||
423 | wl->rx_counter = | 423 | wl->rx_counter = |
424 | wl1251_mem_read32(wl, wl->data_path->rx_control_addr); | 424 | wl1251_mem_read32(wl, wl->data_path->rx_control_addr); |
425 | 425 | ||
426 | /* We handle a frmware bug here */ | 426 | /* We handle a firmware bug here */ |
427 | switch ((wl->rx_counter - wl->rx_handled) & 0xf) { | 427 | switch ((wl->rx_counter - wl->rx_handled) & 0xf) { |
428 | case 0: | 428 | case 0: |
429 | wl1251_debug(DEBUG_IRQ, "RX: FW and host in sync"); | 429 | wl1251_debug(DEBUG_IRQ, "RX: FW and host in sync"); |
@@ -575,7 +575,7 @@ static int wl1251_hw_init_data_path_config(struct wl1251 *wl) | |||
575 | wl->data_path = kzalloc(sizeof(struct acx_data_path_params_resp), | 575 | wl->data_path = kzalloc(sizeof(struct acx_data_path_params_resp), |
576 | GFP_KERNEL); | 576 | GFP_KERNEL); |
577 | if (!wl->data_path) { | 577 | if (!wl->data_path) { |
578 | wl1251_error("Couldnt allocate data path parameters"); | 578 | wl1251_error("Couldn't allocate data path parameters"); |
579 | return -ENOMEM; | 579 | return -ENOMEM; |
580 | } | 580 | } |
581 | 581 | ||
diff --git a/drivers/net/wireless/wl12xx/wl1251_rx.h b/drivers/net/wireless/wl12xx/wl1251_rx.h index 81156b9c4758..563a3fde40fb 100644 --- a/drivers/net/wireless/wl12xx/wl1251_rx.h +++ b/drivers/net/wireless/wl12xx/wl1251_rx.h | |||
@@ -88,7 +88,7 @@ struct wl1251_rx_descriptor { | |||
88 | u8 type; | 88 | u8 type; |
89 | 89 | ||
90 | /* | 90 | /* |
91 | * Recevied Rate: | 91 | * Received Rate: |
92 | * 0x0A - 1MBPS | 92 | * 0x0A - 1MBPS |
93 | * 0x14 - 2MBPS | 93 | * 0x14 - 2MBPS |
94 | * 0x37 - 5_5MBPS | 94 | * 0x37 - 5_5MBPS |