diff options
author | Marek Lindner <mareklindner@neomailbox.ch> | 2015-02-18 09:19:20 -0500 |
---|---|---|
committer | Antonio Quartulli <antonio@meshcoding.com> | 2015-05-29 04:13:37 -0400 |
commit | fc1f86936651191ca51e532083206efb351ccd9c (patch) | |
tree | a4badf0be2b2f86a9ecae1505898ae491d0af6b5 /net/batman-adv | |
parent | 00f548bf5494ade996ae9c5e85c497dd2a3fdad5 (diff) |
batman-adv: checkpatch - spaces preferred around that '*'
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
Diffstat (limited to 'net/batman-adv')
-rw-r--r-- | net/batman-adv/main.h | 2 | ||||
-rw-r--r-- | net/batman-adv/network-coding.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h index 11d2d9fbfc5e..026ba37f31a6 100644 --- a/net/batman-adv/main.h +++ b/net/batman-adv/main.h | |||
@@ -44,7 +44,7 @@ | |||
44 | #define BATADV_TT_CLIENT_TEMP_TIMEOUT 600000 /* in milliseconds */ | 44 | #define BATADV_TT_CLIENT_TEMP_TIMEOUT 600000 /* in milliseconds */ |
45 | #define BATADV_TT_WORK_PERIOD 5000 /* 5 seconds */ | 45 | #define BATADV_TT_WORK_PERIOD 5000 /* 5 seconds */ |
46 | #define BATADV_ORIG_WORK_PERIOD 1000 /* 1 second */ | 46 | #define BATADV_ORIG_WORK_PERIOD 1000 /* 1 second */ |
47 | #define BATADV_DAT_ENTRY_TIMEOUT (5*60000) /* 5 mins in milliseconds */ | 47 | #define BATADV_DAT_ENTRY_TIMEOUT (5 * 60000) /* 5 mins in milliseconds */ |
48 | /* sliding packet range of received originator messages in sequence numbers | 48 | /* sliding packet range of received originator messages in sequence numbers |
49 | * (should be a multiple of our word size) | 49 | * (should be a multiple of our word size) |
50 | */ | 50 | */ |
diff --git a/net/batman-adv/network-coding.c b/net/batman-adv/network-coding.c index 4cb70bb4c3e8..b984bc49deaf 100644 --- a/net/batman-adv/network-coding.c +++ b/net/batman-adv/network-coding.c | |||
@@ -275,7 +275,7 @@ static bool batadv_nc_to_purge_nc_path_decoding(struct batadv_priv *bat_priv, | |||
275 | * max_buffer time | 275 | * max_buffer time |
276 | */ | 276 | */ |
277 | return batadv_has_timed_out(nc_path->last_valid, | 277 | return batadv_has_timed_out(nc_path->last_valid, |
278 | bat_priv->nc.max_buffer_time*10); | 278 | bat_priv->nc.max_buffer_time * 10); |
279 | } | 279 | } |
280 | 280 | ||
281 | /** | 281 | /** |