Skip to content

Commit

Permalink
hostap: Fix typo in hostap_hw.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Masanari Iida authored and Jiri Kosina committed Feb 21, 2012
1 parent 9330254 commit 7d65fd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/wireless/hostap/hostap_hw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1470,7 +1470,7 @@ static int prism2_hw_enable(struct net_device *dev, int initial)
* before it starts acting as an AP, so reset port automatically
* here just in case */
if (initial && prism2_reset_port(dev)) {
printk("%s: MAC port 0 reseting failed\n", dev->name);
printk("%s: MAC port 0 resetting failed\n", dev->name);
return 1;
}

Expand Down Expand Up @@ -1561,7 +1561,7 @@ static void prism2_hw_reset(struct net_device *dev)
static long last_reset = 0;

/* do not reset card more than once per second to avoid ending up in a
* busy loop reseting the card */
* busy loop resetting the card */
if (time_before_eq(jiffies, last_reset + HZ))
return;
last_reset = jiffies;
Expand Down

0 comments on commit 7d65fd7

Please sign in to comment.