projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ae2f66
)
gianfar: Fix misleading indentation in startup_gfar()
author
Anton Vorontsov
<cbouatmailru@gmail.com>
Tue, 18 Jan 2011 02:36:02 +0000
(
02:36
+0000)
committer
David S. Miller
<davem@davemloft.net>
Wed, 19 Jan 2011 00:13:51 +0000
(16:13 -0800)
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>
drivers/net/gianfar.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/net/gianfar.c
b/drivers/net/gianfar.c
index f1d4b450e7973f8c175f38fa59be0e8674c2ae7b..5f4ea0f46596ccb80140b6dc9d8fa2bc4eed13cd 100644
(file)
--- a/
drivers/net/gianfar.c
+++ b/
drivers/net/gianfar.c
@@
-1919,7
+1919,7
@@
int startup_gfar(struct net_device *ndev)
if (err) {
for (j = 0; j < i; j++)
free_grp_irqs(&priv->gfargrp[j]);
-
goto irq_fail;
+ goto irq_fail;
}
}