Browse Source

gianfar: Fix misleading indentation in startup_gfar()

Just stumbled upon the issue while looking for another bug.

The code looks correct, the indentation is not.

Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Anton Vorontsov 14 years ago
parent
commit
ff76015f3b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/gianfar.c

+ 1 - 1
drivers/net/gianfar.c

@@ -1919,7 +1919,7 @@ int startup_gfar(struct net_device *ndev)
 		if (err) {
 		if (err) {
 			for (j = 0; j < i; j++)
 			for (j = 0; j < i; j++)
 				free_grp_irqs(&priv->gfargrp[j]);
 				free_grp_irqs(&priv->gfargrp[j]);
-				goto irq_fail;
+			goto irq_fail;
 		}
 		}
 	}
 	}