projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7fa1d1
)
powerpc/4xx: edac: Add comma to fix build error
author
Mike Williams
<mike@mikebwilliams.com>
Thu, 7 Jul 2011 06:09:58 +0000
(06:09 +0000)
committer
Josh Boyer
<jwboyer@gmail.com>
Thu, 11 Aug 2011 17:52:03 +0000
(13:52 -0400)
Commit
4018294b53d1dae026880e45f174c1cc63b5d435
broke the ppc4xx_edac driver at
line 210 where the struct member is missing a comma.
Signed-off-by: Mike Williams <mike@mikebwilliams.com>
Signed-off-by: Josh Boyer <jwboyer@gmail.com>
drivers/edac/ppc4xx_edac.c
patch
|
blob
|
history
diff --git
a/drivers/edac/ppc4xx_edac.c
b/drivers/edac/ppc4xx_edac.c
index 0de7d8770891e5421a52f7a8732b66e09dd13423..38400963e245f93b74beb056f7e5fa10f2209680 100644
(file)
--- a/
drivers/edac/ppc4xx_edac.c
+++ b/
drivers/edac/ppc4xx_edac.c
@@
-205,7
+205,7
@@
static struct platform_driver ppc4xx_edac_driver = {
.remove = ppc4xx_edac_remove,
.driver = {
.owner = THIS_MODULE,
- .name = PPC4XX_EDAC_MODULE_NAME
+ .name = PPC4XX_EDAC_MODULE_NAME
,
.of_match_table = ppc4xx_edac_match,
},
};