* [PATCH] USB: serial: Changes to conform with coding style
@ 2012-04-26 9:31 puzzleduck
2012-04-26 12:41 ` Sergei Shtylyov
0 siblings, 1 reply; 4+ messages in thread
From: puzzleduck @ 2012-04-26 9:31 UTC (permalink / raw)
To: wgreathouse; +Cc: linux-usb, linux-kernel, puzzleduck
From: PuZZleDucK <puzzleduck@gmail.com>
Removed some spaces before tabs and reformatted switch statement.
Signed-off-by: PuZZleDucK <puzzleduck@gmail.com>
---
drivers/usb/serial/belkin_sa.c | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/drivers/usb/serial/belkin_sa.c b/drivers/usb/serial/belkin_sa.c
index a52e0d2..35b0d3d 100644
--- a/drivers/usb/serial/belkin_sa.c
+++ b/drivers/usb/serial/belkin_sa.c
@@ -2,17 +2,17 @@
* Belkin USB Serial Adapter Driver
*
* Copyright (C) 2000 William Greathouse (wgreathouse@smva.com)
- * Copyright (C) 2000-2001 Greg Kroah-Hartman (greg@kroah.com)
+ * Copyright (C) 2000-2001 Greg Kroah-Hartman (greg@kroah.com)
* Copyright (C) 2010 Johan Hovold (jhovold@gmail.com)
*
* This program is largely derived from work by the linux-usb group
* and associated source files. Please see the usb/serial files for
* individual credits and copyrights.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
*
* See Documentation/usb/usb-serial.txt for more information on using this
* driver
@@ -403,7 +403,8 @@ static void belkin_sa_set_termios(struct tty_struct *tty,
case CS8:
urb_value = BELKIN_SA_DATA_BITS(8);
break;
- default: dbg("CSIZE was not CS5-CS8, using default of 8");
+ default:
+ dbg("CSIZE was not CS5-CS8, using default of 8");
urb_value = BELKIN_SA_DATA_BITS(8);
break;
}
--
1.7.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] USB: serial: Changes to conform with coding style
2012-04-26 9:31 [PATCH] USB: serial: Changes to conform with coding style puzzleduck
@ 2012-04-26 12:41 ` Sergei Shtylyov
2012-04-26 13:42 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Sergei Shtylyov @ 2012-04-26 12:41 UTC (permalink / raw)
To: puzzleduck; +Cc: wgreathouse, linux-usb, linux-kernel
Hello.
On 26-04-2012 13:31, puzzleduck@gmail.com wrote:
> From: PuZZleDucK<puzzleduck@gmail.com>
> Removed some spaces before tabs and reformatted switch statement.
> Signed-off-by: PuZZleDucK<puzzleduck@gmail.com>
Real name is needed here, no aliases allowed.
WBR, Sergei
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] USB: serial: Changes to conform with coding style
2012-04-26 12:41 ` Sergei Shtylyov
@ 2012-04-26 13:42 ` Greg KH
0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2012-04-26 13:42 UTC (permalink / raw)
To: puzzleduck; +Cc: Sergei Shtylyov, wgreathouse, linux-usb, linux-kernel
On Thu, Apr 26, 2012 at 04:41:57PM +0400, Sergei Shtylyov wrote:
> Hello.
>
> On 26-04-2012 13:31, puzzleduck@gmail.com wrote:
>
> >From: PuZZleDucK<puzzleduck@gmail.com>
>
> >Removed some spaces before tabs and reformatted switch statement.
>
> >Signed-off-by: PuZZleDucK<puzzleduck@gmail.com>
>
> Real name is needed here, no aliases allowed.
I agree, please see Documentation/SubmittingPatches for what
"Signed-off-by:" means, and why we can't accept this as-is.
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] USB: serial: Changes to conform with coding style
@ 2012-04-28 3:36 Ben Minerds
0 siblings, 0 replies; 4+ messages in thread
From: Ben Minerds @ 2012-04-28 3:36 UTC (permalink / raw)
To: wgreathouse; +Cc: linux-usb, linux-kernel, puzzleduck
Removed some spaces before tabs and reformatted switch statement.
Signed-off-by: Ben Minerds <puzzleduck@gmail.com>
---
drivers/usb/serial/belkin_sa.c | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/drivers/usb/serial/belkin_sa.c b/drivers/usb/serial/belkin_sa.c
index a52e0d2..35b0d3d 100644
--- a/drivers/usb/serial/belkin_sa.c
+++ b/drivers/usb/serial/belkin_sa.c
@@ -2,17 +2,17 @@
* Belkin USB Serial Adapter Driver
*
* Copyright (C) 2000 William Greathouse (wgreathouse@smva.com)
- * Copyright (C) 2000-2001 Greg Kroah-Hartman (greg@kroah.com)
+ * Copyright (C) 2000-2001 Greg Kroah-Hartman (greg@kroah.com)
* Copyright (C) 2010 Johan Hovold (jhovold@gmail.com)
*
* This program is largely derived from work by the linux-usb group
* and associated source files. Please see the usb/serial files for
* individual credits and copyrights.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
*
* See Documentation/usb/usb-serial.txt for more information on using this
* driver
@@ -403,7 +403,8 @@ static void belkin_sa_set_termios(struct tty_struct *tty,
case CS8:
urb_value = BELKIN_SA_DATA_BITS(8);
break;
- default: dbg("CSIZE was not CS5-CS8, using default of 8");
+ default:
+ dbg("CSIZE was not CS5-CS8, using default of 8");
urb_value = BELKIN_SA_DATA_BITS(8);
break;
}
--
1.7.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-04-28 2:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-26 9:31 [PATCH] USB: serial: Changes to conform with coding style puzzleduck
2012-04-26 12:41 ` Sergei Shtylyov
2012-04-26 13:42 ` Greg KH
-- strict thread matches above, loose matches on Subject: below --
2012-04-28 3:36 Ben Minerds
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox