[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1578881777-65475-2-git-send-email-zhengbin13@huawei.com>
Date: Mon, 13 Jan 2020 10:16:14 +0800
From: Zheng Bin <zhengbin13@...wei.com>
To: <gregkh@...uxfoundation.org>, <jslaby@...e.com>,
<linux-kernel@...r.kernel.org>
CC: <zhengbin13@...wei.com>
Subject: [PATCH RESEND 1/4] tty: synclink_gt: use true,false for bool variable
Fixes coccicheck warning:
drivers/tty/synclink_gt.c:2101:3-19: WARNING: Assignment of 0/1 to bool variable
Reported-by: Hulk Robot <hulkci@...wei.com>
Signed-off-by: Zheng Bin <zhengbin13@...wei.com>
---
drivers/tty/synclink_gt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/tty/synclink_gt.c b/drivers/tty/synclink_gt.c
index 5759b6c..eebf10b 100644
--- a/drivers/tty/synclink_gt.c
+++ b/drivers/tty/synclink_gt.c
@@ -2098,7 +2098,7 @@ static void isr_rxdata(struct slgt_info *info)
if (desc_complete(info->rbufs[i])) {
/* all buffers full */
rx_stop(info);
- info->rx_restart = 1;
+ info->rx_restart = true;
continue;
}
info->rbufs[i].buf[count++] = (unsigned char)reg;
--
2.7.4
Powered by blists - more mailing lists