linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv2] staging/winbond: fix a style error
@ 2014-03-25 14:36 Michele Curti
  2014-03-26  9:10 ` Pavel Machek
  2014-04-25 21:06 ` Greg KH
  0 siblings, 2 replies; 4+ messages in thread
From: Michele Curti @ 2014-03-25 14:36 UTC (permalink / raw)
  To: linux-next; +Cc: pavel, gregkh


Removed a few spaces that cause coding style error.

Signed-off-by: Michele Curti <michele.curti@gmail.com>

---
 drivers/staging/winbond/wb35tx_s.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/winbond/wb35tx_s.h b/drivers/staging/winbond/wb35tx_s.h
index 715f87d..dc12008 100644
--- a/drivers/staging/winbond/wb35tx_s.h
+++ b/drivers/staging/winbond/wb35tx_s.h
@@ -12,7 +12,7 @@
 /* Internal variable for module */
 struct wb35_tx {
        /* For Tx buffer */
-       u8      TxBuffer[ MAX_USB_TX_BUFFER_NUMBER ][ MAX_USB_TX_BUFFER ];
+       u8      TxBuffer[MAX_USB_TX_BUFFER_NUMBER][MAX_USB_TX_BUFFER];

        /* For Interrupt pipe */
        u8      EP2_buf[MAX_INTERRUPT_LENGTH];

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCHv2] staging/winbond: fix a style error
  2014-03-25 14:36 [PATCHv2] staging/winbond: fix a style error Michele Curti
@ 2014-03-26  9:10 ` Pavel Machek
  2014-04-25 21:06 ` Greg KH
  1 sibling, 0 replies; 4+ messages in thread
From: Pavel Machek @ 2014-03-26  9:10 UTC (permalink / raw)
  To: Michele Curti; +Cc: linux-next, gregkh

On Tue 2014-03-25 15:36:37, Michele Curti wrote:
> 
> Removed a few spaces that cause coding style error.
> 
> Signed-off-by: Michele Curti <michele.curti@gmail.com>

Acked-by: Pavel Machek <pavel@ucw.cz>

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCHv2] staging/winbond: fix a style error
  2014-03-25 14:36 [PATCHv2] staging/winbond: fix a style error Michele Curti
  2014-03-26  9:10 ` Pavel Machek
@ 2014-04-25 21:06 ` Greg KH
  2014-05-03 12:36   ` [PATCHv3] " Michele CURTI
  1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2014-04-25 21:06 UTC (permalink / raw)
  To: Michele Curti; +Cc: linux-next, pavel

On Tue, Mar 25, 2014 at 03:36:37PM +0100, Michele Curti wrote:
> 
> Removed a few spaces that cause coding style error.
> 
> Signed-off-by: Michele Curti <michele.curti@gmail.com>
> Acked-by: Pavel Machek <pavel@ucw.cz>
> 
> ---
>  drivers/staging/winbond/wb35tx_s.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> diff --git a/drivers/staging/winbond/wb35tx_s.h b/drivers/staging/winbond/wb35tx_s.h
> index 715f87d..dc12008 100644
> --- a/drivers/staging/winbond/wb35tx_s.h
> +++ b/drivers/staging/winbond/wb35tx_s.h
> @@ -12,7 +12,7 @@
>  /* Internal variable for module */
>  struct wb35_tx {
>         /* For Tx buffer */
> -       u8      TxBuffer[ MAX_USB_TX_BUFFER_NUMBER ][ MAX_USB_TX_BUFFER ];
> +       u8      TxBuffer[MAX_USB_TX_BUFFER_NUMBER][MAX_USB_TX_BUFFER];
> 
>         /* For Interrupt pipe */
>         u8      EP2_buf[MAX_INTERRUPT_LENGTH];

The patch is whitespace damaged and can not be applied :(

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCHv3] staging/winbond: fix a style error
  2014-04-25 21:06 ` Greg KH
@ 2014-05-03 12:36   ` Michele CURTI
  0 siblings, 0 replies; 4+ messages in thread
From: Michele CURTI @ 2014-05-03 12:36 UTC (permalink / raw)
  To: Greg KH; +Cc: pavel, linux-next


Removed a few spaces to fix style errors

Signed-off-by: Michele Curti <michele.curti@gmail.com>
---
 drivers/staging/winbond/wb35tx_s.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/winbond/wb35tx_s.h b/drivers/staging/winbond/wb35tx_s.h
index 715f87d..dc12008 100644
--- a/drivers/staging/winbond/wb35tx_s.h
+++ b/drivers/staging/winbond/wb35tx_s.h
@@ -12,7 +12,7 @@
 /* Internal variable for module */
 struct wb35_tx {
 	/* For Tx buffer */
-	u8	TxBuffer[ MAX_USB_TX_BUFFER_NUMBER ][ MAX_USB_TX_BUFFER ];
+	u8	TxBuffer[MAX_USB_TX_BUFFER_NUMBER][MAX_USB_TX_BUFFER];
 
 	/* For Interrupt pipe */
 	u8	EP2_buf[MAX_INTERRUPT_LENGTH];
-- 
1.9.2


On Fri, Apr 25, 2014 at 02:06:18PM -0700, Greg KH wrote:
> On Tue, Mar 25, 2014 at 03:36:37PM +0100, Michele Curti wrote:
> > 
> > Removed a few spaces that cause coding style error.
> > 
> > Signed-off-by: Michele Curti <michele.curti@gmail.com>
> > Acked-by: Pavel Machek <pavel@ucw.cz>
> > 
> > ---
> >  drivers/staging/winbond/wb35tx_s.h | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > diff --git a/drivers/staging/winbond/wb35tx_s.h b/drivers/staging/winbond/wb35tx_s.h
> > index 715f87d..dc12008 100644
> > --- a/drivers/staging/winbond/wb35tx_s.h
> > +++ b/drivers/staging/winbond/wb35tx_s.h
> > @@ -12,7 +12,7 @@
> >  /* Internal variable for module */
> >  struct wb35_tx {
> >         /* For Tx buffer */
> > -       u8      TxBuffer[ MAX_USB_TX_BUFFER_NUMBER ][ MAX_USB_TX_BUFFER ];
> > +       u8      TxBuffer[MAX_USB_TX_BUFFER_NUMBER][MAX_USB_TX_BUFFER];
> > 
> >         /* For Interrupt pipe */
> >         u8      EP2_buf[MAX_INTERRUPT_LENGTH];
> 
> The patch is whitespace damaged and can not be applied :(

Sorry,
Michele

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-05-03 12:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-25 14:36 [PATCHv2] staging/winbond: fix a style error Michele Curti
2014-03-26  9:10 ` Pavel Machek
2014-04-25 21:06 ` Greg KH
2014-05-03 12:36   ` [PATCHv3] " Michele CURTI

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).