[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20151020065600.GA104525@lkp-ib03>
Date: Tue, 20 Oct 2015 14:56:00 +0800
From: kbuild test robot <fengguang.wu@...el.com>
To: Arnd Bergmann <arnd@...db.de>
Cc: kbuild-all@...org, netdev@...r.kernel.org,
huangdaode <huangdaode@...ilicon.com>,
Kenneth Lee <liguozhu@...wei.com>,
Yisen Zhuang <Yisen.Zhuang@...wei.com>,
linux-kernel@...r.kernel.org
Subject: [PATCH] net: hisilicon: fix ptr_ret.cocci warnings
drivers/net/ethernet/hisilicon/hns/hnae.c:442:1-3: WARNING: PTR_ERR_OR_ZERO can be used
Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR
Generated by: scripts/coccinelle/api/ptr_ret.cocci
CC: Arnd Bergmann <arnd@...db.de>
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---
hnae.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
--- a/drivers/net/ethernet/hisilicon/hns/hnae.c
+++ b/drivers/net/ethernet/hisilicon/hns/hnae.c
@@ -439,10 +439,7 @@ EXPORT_SYMBOL(hnae_ae_unregister);
static int __init hnae_init(void)
{
hnae_class = class_create(THIS_MODULE, "hnae");
- if (IS_ERR(hnae_class))
- return PTR_ERR(hnae_class);
-
- return 0;
+ return PTR_ERR_OR_ZERO(hnae_class);
}
static void __exit hnae_exit(void)
--
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