2022-07-20 19:52:05

by Xin Gao

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

do not initialise statics to 0.

Signed-off-by: Xin Gao <[email protected]>
---
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


2022-07-20 20:53:40

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] USB:do not initialise statics to 0.

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