lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20151025064711.GA5729@localhost.localdomain> Date: Sun, 25 Oct 2015 12:17:11 +0530 From: saurabh <saurabh.truth@...il.com> To: gregkh@...uxfoundation.org, stern@...land.harvard.edu, balbi@...com, chasemetzger15@...il.com, rafael.j.wysocki@...el.com, mjg59@...eos.com, Robert.Schlabbach@....net, jwerner@...omium.org, jin.can.zhuang@...el.com, linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org, celinux-dev@...e.celinuxforum.org Cc: saurabh.truth@...il.com Subject: [PATCH] fixing the coding style changes >From 999005638f8d3f95075fdfdc6bf8f7ff88810f5d Mon Sep 17 00:00:00 2001 From: Saurabh Sengar <saurabh.truth@...il.com> Date: Sun, 25 Oct 2015 08:58:42 +0530 Subject: [PATCH] fixing the coding style changes Attached a patch whic fixes the checkpatch.pl script error Here, couple of static variables were initialise to 0 which was violating the linux coding style standards. diffstat for this patch is: hub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) To apply the patch, in the root of a kernel tree use: patch -p1 < 0001-fixing-the-coding-style-changes.patch Signed-off-by: Saurabh Sengar <saurabh.truth@...il.com> --- drivers/usb/core/hub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 431839b..6abc4ab 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -49,7 +49,7 @@ static void hub_event(struct work_struct *work); DEFINE_MUTEX(usb_port_peer_mutex); /* cycle leds on hubs that aren't blinking for attention */ -static bool blinkenlights = 0; +static bool blinkenlights; module_param(blinkenlights, bool, S_IRUGO); MODULE_PARM_DESC(blinkenlights, "true to cycle leds on hubs"); @@ -78,7 +78,7 @@ MODULE_PARM_DESC(initial_descriptor_timeout, * otherwise the new scheme is used. If that fails and "use_both_schemes" * is set, then the driver will make another attempt, using the other scheme. */ -static bool old_scheme_first = 0; +static bool old_scheme_first; module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR); MODULE_PARM_DESC(old_scheme_first, "start with the old device initialization scheme"); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists