[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160215162557.GA65463@lkp-hsx03>
Date: Tue, 16 Feb 2016 00:25:57 +0800
From: kbuild test robot <lkp@...el.com>
To: Amitkumar Karwar <akarwar@...vell.com>
Cc: kbuild-all@...org, linux-bluetooth@...r.kernel.org,
Nishant Sarmukadam <nishants@...vell.com>,
linux-kernel@...r.kernel.org, Cathy Luo <cluo@...vell.com>,
marcel@...tmann.org, Ganapathi Bhat <gbhat@...vell.com>,
Amitkumar Karwar <akarwar@...vell.com>
Subject: [PATCH] Bluetooth: hci_uart: fix boolreturn.cocci warnings
drivers/bluetooth/hci_mrvl.c:411:9-10: WARNING: return of 0/1 in function 'mrvl_fw_loaded' 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: Ganapathi Bhat <gbhat@...vell.com>
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---
hci_mrvl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/drivers/bluetooth/hci_mrvl.c
+++ b/drivers/bluetooth/hci_mrvl.c
@@ -408,9 +408,9 @@ static bool mrvl_fw_loaded(struct hci_ua
struct fw_data *fw_data = mrvl->fwdata;
if ((get_cts(hu->tty)) || (fw_data->fw_loaded))
- return 1;
+ return true;
else
- return 0;
+ return false;
}
/* Set the baud rate */
Powered by blists - more mailing lists