[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200426094130.23384-1-yanaijie@huawei.com>
Date: Sun, 26 Apr 2020 17:41:30 +0800
From: Jason Yan <yanaijie@...wei.com>
To: <b-liu@...com>, <gregkh@...uxfoundation.org>, <tony@...mide.com>,
<linux-usb@...r.kernel.org>, <linux-kernel@...r.kernel.org>
CC: Jason Yan <yanaijie@...wei.com>
Subject: [PATCH] usb: musb: use true for 'use_dma'
Fix the following coccicheck warning:
drivers/usb/musb/musb_core.c:1798:12-19: WARNING: Assignment of 0/1 to
bool variable
Signed-off-by: Jason Yan <yanaijie@...wei.com>
---
drivers/usb/musb/musb_core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c
index d590110539ab..a0eba889ec61 100644
--- a/drivers/usb/musb/musb_core.c
+++ b/drivers/usb/musb/musb_core.c
@@ -1795,7 +1795,7 @@ irqreturn_t musb_interrupt(struct musb *musb)
EXPORT_SYMBOL_GPL(musb_interrupt);
#ifndef CONFIG_MUSB_PIO_ONLY
-static bool use_dma = 1;
+static bool use_dma = true;
/* "modprobe ... use_dma=0" etc */
module_param(use_dma, bool, 0644);
--
2.21.1
Powered by blists - more mailing lists