[PATCH] USB:do not initialise statics to 0.

Xin Gao posted 1 patch 3 years, 9 months ago
drivers/usb/gadget/legacy/zero.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] USB:do not initialise statics to 0.
Posted by Xin Gao 3 years, 9 months ago
do not initialise statics to 0.

Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
---
 drivers/usb/gadget/legacy/zero.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/gadget/legacy/zero.c b/drivers/usb/gadget/legacy/zero.c
index 23312a07efb4..c5f6d496064b 100644
--- a/drivers/usb/gadget/legacy/zero.c
+++ b/drivers/usb/gadget/legacy/zero.c
@@ -56,7 +56,7 @@ static const char longname[] = "Gadget Zero";
  * work better with hosts where config changes are problematic or
  * controllers (like original superh) that only support one config.
  */
-static bool loopdefault = 0;
+static bool loopdefault;
 module_param(loopdefault, bool, S_IRUGO|S_IWUSR);
 
 static struct usb_zero_options gzero_options = {
-- 
2.30.2
Re: [PATCH] USB:do not initialise statics to 0.
Posted by Greg KH 3 years, 9 months ago
On Thu, Jul 21, 2022 at 03:48:08AM +0800, Xin Gao wrote:
> do not initialise statics to 0.

Why not?

You need to be very specific in changelog texts please.

greg k-h