[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1387359364-5892-1-git-send-email-chenweilong@huawei.com>
Date: Wed, 18 Dec 2013 17:36:04 +0800
From: Chen Weilong <chenweilong@...wei.com>
To: <davem@...emloft.net>, <alex.bluesman.smirnov@...il.com>,
<dbaryshkov@...il.com>
CC: <netdev@...r.kernel.org>
Subject: [PATCH] mac802154: fix following checkpath.pl warning Prefer pr_warn(... to pr_warning(...
From: Weilong Chen <chenweilong@...wei.com>
This patch fixes checkpath.pl:
WARNING: Prefer pr_warn(... to pr_warning(...
#447: FILE: ./wpan.c:447:
Signed-off-by: Weilong Chen <chenweilong@...wei.com>
---
net/mac802154/wpan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/mac802154/wpan.c b/net/mac802154/wpan.c
index e24bcf9..9e5cc67 100644
--- a/net/mac802154/wpan.c
+++ b/net/mac802154/wpan.c
@@ -444,7 +444,7 @@ mac802154_subif_frame(struct mac802154_sub_if_data *sdata, struct sk_buff *skb)
case IEEE802154_FC_TYPE_DATA:
return mac802154_process_data(sdata->dev, skb);
default:
- pr_warning("ieee802154: bad frame received (type = %d)\n",
+ pr_warn("ieee802154: bad frame received (type = %d)\n",
mac_cb_type(skb));
kfree_skb(skb);
return NET_RX_DROP;
--
1.7.12
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists