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.
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
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