summaryrefslogtreecommitdiff
path: root/net/batman-adv/hash.c
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2012-06-17 14:27:22 (GMT)
committerAntonio Quartulli <ordex@autistici.org>2012-07-01 20:47:23 (GMT)
commitcb4cca7103ea29b9296a85fe45966e7d95669ee1 (patch)
tree1ecee4adfdaa8319b8d1a31599f29f52f99604ff /net/batman-adv/hash.c
parentb706b13b6cfde22d1f4adc540fd89426247c1e3e (diff)
downloadlinux-fsl-qoriq-cb4cca7103ea29b9296a85fe45966e7d95669ee1.tar.xz
batman-adv: Remove space before semicolon
Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv/hash.c')
-rw-r--r--net/batman-adv/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/hash.c b/net/batman-adv/hash.c
index 0759c70..15a849c 100644
--- a/net/batman-adv/hash.c
+++ b/net/batman-adv/hash.c
@@ -25,7 +25,7 @@ static void batadv_hash_init(struct batadv_hashtable *hash)
{
uint32_t i;
- for (i = 0 ; i < hash->size; i++) {
+ for (i = 0; i < hash->size; i++) {
INIT_HLIST_HEAD(&hash->table[i]);
spin_lock_init(&hash->list_locks[i]);
}