summaryrefslogtreecommitdiffstats
path: root/net/batman-adv
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2018-01-05 09:54:32 +0100
committerSimon Wunderlich <sw@simonwunderlich.de>2018-02-27 12:55:36 +0100
commit84d0a394808621619a4b319c6eed16e3b389e214 (patch)
treea2f9108505a0ac7b80d6a443de47113c555c923a /net/batman-adv
parent6b1aea8cf2c8618146edaf6b35775ab55f7cafe5 (diff)
downloadop-kernel-dev-84d0a394808621619a4b319c6eed16e3b389e214.zip
op-kernel-dev-84d0a394808621619a4b319c6eed16e3b389e214.tar.gz
batman-adv: Fix indentation of batadv_seq_before
Also multiline macros should have their statements start on a tabstop. This was detected by checkpatch.pl after commit a134f8de9f40 ("checkpatch: improve the TABSTOP test to include declarations"). Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
Diffstat (limited to 'net/batman-adv')
-rw-r--r--net/batman-adv/main.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h
index d5d6599..057a28a 100644
--- a/net/batman-adv/main.h
+++ b/net/batman-adv/main.h
@@ -331,11 +331,13 @@ static inline bool batadv_has_timed_out(unsigned long timestamp,
*
* Return: true when x is a predecessor of y, false otherwise
*/
-#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_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); \
+})
/**
* batadv_seq_after() - Checks if a sequence number x is a successor of y
OpenPOWER on IntegriCloud