Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a76193df7c7b60f9facb4090c5ec082e06582209
Commit:     a76193df7c7b60f9facb4090c5ec082e06582209
Parent:     20c9d198731f440eaad6fafd00fe7ccfcd443a84
Author:     Akinobu Mita <[EMAIL PROTECTED]>
AuthorDate: Sun May 27 23:25:00 2007 +0900
Committer:  John W. Linville <[EMAIL PROTECTED]>
CommitDate: Tue May 29 11:16:34 2007 -0400

    [PATCH] ieee80211: fix incomplete error message
    
    Fix error message:
    Unable to network device. --> Unable to allocate network device.
    
    Cc: James Ketrenos <[EMAIL PROTECTED]>
    Signed-off-by: Akinobu Mita <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 net/ieee80211/ieee80211_module.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/ieee80211/ieee80211_module.c b/net/ieee80211/ieee80211_module.c
index 7ec6610..17ad278 100644
--- a/net/ieee80211/ieee80211_module.c
+++ b/net/ieee80211/ieee80211_module.c
@@ -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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to