[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1409444211-758-1-git-send-email-ramon.fried@gmail.com>
Date: Sun, 31 Aug 2014 03:16:48 +0300
From: Ramon Fried <ramon.fried@...il.com>
To: ramon.fried@...il.com
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
"David S. Miller" <davem@...emloft.net>,
Sarah Sharp <sarah.a.sharp@...ux.intel.com>,
Daniel Borkmann <dborkman@...hat.com>,
Alan Cox <alan@...ux.intel.com>,
Wilfried Klaebe <w-lkml@...enslange-mailadresse.de>,
Mostyn Bramley-Moore <mbmcode@...il.com>,
Toby Smith <toby@...mith.id.au>,
Archana kumari <archanakumari959@...il.com>,
Jason Wang <jasowang@...hat.com>,
Himangi Saraogi <himangi774@...il.com>,
Iulia Manda <iulia.manda21@...il.com>,
devel@...verdev.osuosl.org (open list:STAGING SUBSYSTEM),
linux-kernel@...r.kernel.org (open list)
Subject: [PATCH] staging: netlogic: fixed checkpatch.pl styling warnings
This patch fixes the following checkpatch.pl warnings:
WARNING: Possible unnecessary 'out of memory' message
#146: FILE: ./xlr_net.c:146:
+ if (!skb) {
+ pr_err("SKB allocation failed\n");
WARNING: Missing a blank line after declarations
#1107: FILE: ./xlr_net.c:1107:
+ struct xlr_net_priv *priv = platform_get_drvdata(pdev);
+ unregister_netdev(priv->ndev);
Signed-off-by: Ramon Fried <ramon.fried@...il.com>
---
drivers/staging/netlogic/xlr_net.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/netlogic/xlr_net.c b/drivers/staging/netlogic/xlr_net.c
index 9bf407d..28a42831 100644
--- a/drivers/staging/netlogic/xlr_net.c
+++ b/drivers/staging/netlogic/xlr_net.c
@@ -142,10 +142,8 @@ static inline struct sk_buff *xlr_alloc_skb(void)
/* skb->data is cache aligned */
skb = alloc_skb(XLR_RX_BUF_SIZE, GFP_ATOMIC);
- if (!skb) {
- pr_err("SKB allocation failed\n");
+ if (!skb)
return NULL;
- }
mac_put_skb_back_ptr(skb);
return skb;
}
@@ -1104,6 +1102,7 @@ err_gmac:
static int xlr_net_remove(struct platform_device *pdev)
{
struct xlr_net_priv *priv = platform_get_drvdata(pdev);
+
unregister_netdev(priv->ndev);
mdiobus_unregister(priv->mii_bus);
mdiobus_free(priv->mii_bus);
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists