aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-02-11 06:56:59 -0500
committerJiri Kosina <jkosina@suse.cz>2012-02-21 05:40:35 -0500
commit7d65fd76e78f16be60ec01f11ce56969627e7b63 (patch)
treeb553893d9ad9bb4a27fad6554b1fbeeee8c5eb1d /drivers
parent933025492f2d6d42c5c7c4df635291a52fd41904 (diff)
hostap: Fix typo in hostap_hw.c
Correct spelling "reseting" to "resetting" in drivers/net/wireless/hostap/hostap_hw.c Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/hostap/hostap_hw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/hostap/hostap_hw.c b/drivers/net/wireless/hostap/hostap_hw.c
index a8bddd81b4d1..682df855bd85 100644
--- a/drivers/net/wireless/hostap/hostap_hw.c
+++ b/drivers/net/wireless/hostap/hostap_hw.c
@@ -1470,7 +1470,7 @@ static int prism2_hw_enable(struct net_device *dev, int initial)
1470 * before it starts acting as an AP, so reset port automatically 1470 * before it starts acting as an AP, so reset port automatically
1471 * here just in case */ 1471 * here just in case */
1472 if (initial && prism2_reset_port(dev)) { 1472 if (initial && prism2_reset_port(dev)) {
1473 printk("%s: MAC port 0 reseting failed\n", dev->name); 1473 printk("%s: MAC port 0 resetting failed\n", dev->name);
1474 return 1; 1474 return 1;
1475 } 1475 }
1476 1476
@@ -1561,7 +1561,7 @@ static void prism2_hw_reset(struct net_device *dev)
1561 static long last_reset = 0; 1561 static long last_reset = 0;
1562 1562
1563 /* do not reset card more than once per second to avoid ending up in a 1563 /* do not reset card more than once per second to avoid ending up in a
1564 * busy loop reseting the card */ 1564 * busy loop resetting the card */
1565 if (time_before_eq(jiffies, last_reset + HZ)) 1565 if (time_before_eq(jiffies, last_reset + HZ))
1566 return; 1566 return;
1567 last_reset = jiffies; 1567 last_reset = jiffies;