[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20170331235055.GA28462@lkp-wsm-ep1>
Date: Sat, 1 Apr 2017 07:50:55 +0800
From: kbuild test robot <lkp@...el.com>
To: Salil Mehta <salil.mehta@...wei.com>
Cc: kbuild-all@...org, davem@...emloft.net, salil.mehta@...wei.com,
yisen.zhuang@...wei.com, mehta.salil.lnk@...il.com,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
linuxarm@...wei.com, lipeng <lipeng321@...wei.com>
Subject: [PATCH] net: hns: fix boolreturn.cocci warnings
drivers/net/ethernet/hisilicon/hns/hns_enet.c:1548:8-9: WARNING: return of 0/1 in function 'hns_enable_serdes_lb' with return type bool
Return statements in functions returning bool should use
true/false instead of 1/0.
Generated by: scripts/coccinelle/misc/boolreturn.cocci
CC: lipeng <lipeng321@...wei.com>
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---
hns_enet.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/net/ethernet/hisilicon/hns/hns_enet.c
+++ b/drivers/net/ethernet/hisilicon/hns/hns_enet.c
@@ -1545,7 +1545,7 @@ static bool hns_enable_serdes_lb(struct
/* wait h/w ready */
mdelay(300);
- return 0;
+ return false;
}
static void hns_disable_serdes_lb(struct net_device *ndev)
Powered by blists - more mailing lists