[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1511848467.32426.100.camel@perches.com>
Date: Mon, 27 Nov 2017 21:54:27 -0800
From: Joe Perches <joe@...ches.com>
To: Colin King <colin.king@...onical.com>,
Chas Williams <3chas3@...il.com>,
linux-atm-general@...ts.sourceforge.net, netdev@...r.kernel.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] atm: eni: fix several indentation issues
On Mon, 2017-11-27 at 13:15 +0000, 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
#define DEBUG_INCR(var) do {} while (0)
#endif
...
DEBUG_INCR(rx_enqueued);
Powered by blists - more mailing lists