From: Antonio Quartulli Date: Mon, 1 Sep 2014 12:37:26 +0000 (+0200) Subject: batman-adv: checkpatch - No space is necessary after a cast X-Git-Tag: v4.0-rc1~133^2~266^2~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9687a31c84d7eca038a5335d8d804c11bd5d8653;p=karo-tx-linux.git batman-adv: checkpatch - No space is necessary after a cast Signed-off-by: Antonio Quartulli Signed-off-by: Marek Lindner --- diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h index 2a59b0455e0a..18286f8b4d26 100644 --- a/net/batman-adv/main.h +++ b/net/batman-adv/main.h @@ -312,10 +312,10 @@ static inline bool batadv_has_timed_out(unsigned long timestamp, * - when adding 128 - it is neither a predecessor nor a successor, * - after adding more than 127 to the starting value - it is a successor */ -#define batadv_seq_before(x, y) ({typeof(x) _d1 = (x); \ - typeof(y) _d2 = (y); \ - typeof(x) _dummy = (_d1 - _d2); \ - (void) (&_d1 == &_d2); \ +#define batadv_seq_before(x, y) ({typeof(x)_d1 = (x); \ + typeof(y)_d2 = (y); \ + typeof(x)_dummy = (_d1 - _d2); \ + (void)(&_d1 == &_d2); \ _dummy > batadv_smallest_signed_int(_dummy); }) #define batadv_seq_after(x, y) batadv_seq_before(y, x)