Skip to content

Commit

Permalink
[PATCH] ieee80211: fix incomplete error message
Browse files Browse the repository at this point in the history
Fix error message:
Unable to network device. --> Unable to allocate network device.

Cc: James Ketrenos <jketreno@linux.intel.com>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Akinobu Mita authored and John W. Linville committed May 29, 2007
1 parent 20c9d19 commit a76193d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ieee80211/ieee80211_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ struct net_device *alloc_ieee80211(int sizeof_priv)

dev = alloc_etherdev(sizeof(struct ieee80211_device) + sizeof_priv);
if (!dev) {
IEEE80211_ERROR("Unable to network device.\n");
IEEE80211_ERROR("Unable to allocate network device.\n");
goto failed;
}
ieee = netdev_priv(dev);
Expand Down

0 comments on commit a76193d

Please sign in to comment.