Re: [PATCH] atm: eni: fix several indentation issues

2017-11-30 Thread David Miller
From: Colin King Date: Mon, 27 Nov 2017 13:15:10 + > From: Colin Ian King > > There are several statements that have incorrect indentation. Fix > these. > > Signed-off-by: Colin Ian King Applied.

Re: [PATCH] atm: eni: fix several indentation issues

2017-11-27 Thread Joe Perches
On Mon, 2017-11-27 at 13:15 +, Colin King wrote: > drivers/atm/eni.c Aren't all those ++ variables unused? They seem to be emitted in an #if 0 printk(...) #endif Maybe these should be removed or changed to something like: #if 0 #define DEBUG_INCR(var) do { (var)++ } while (0) #else

[PATCH] atm: eni: fix several indentation issues

2017-11-27 Thread Colin King
From: Colin Ian King There are several statements that have incorrect indentation. Fix these. Signed-off-by: Colin Ian King --- drivers/atm/eni.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/atm/eni.c b/drivers/atm/eni.c index ce47eb17901d..647