diff options
author | Anatolij Gustschin <agust@denx.de> | 2010-06-02 21:17:42 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-06-02 23:02:41 -0400 |
commit | a26f95fed31d917eee616d1cd6360e4ce782e3dc (patch) | |
tree | 09b3d922849db2a1fb6ef7aae8c6573c76c272d8 /drivers/edac/ppc4xx_edac.c | |
parent | 4eecb17825a9cd2ea750c177487000fab4c19ea2 (diff) |
of/edac: fix build breakage in drivers
Fixes build errors in EDAC drivers caused by the OF
device_node pointer being moved into struct device
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/edac/ppc4xx_edac.c')
-rw-r--r-- | drivers/edac/ppc4xx_edac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/edac/ppc4xx_edac.c b/drivers/edac/ppc4xx_edac.c index 9d6f6783328c..e78839e89a06 100644 --- a/drivers/edac/ppc4xx_edac.c +++ b/drivers/edac/ppc4xx_edac.c | |||
@@ -1022,7 +1022,7 @@ ppc4xx_edac_mc_init(struct mem_ctl_info *mci, | |||
1022 | int status = 0; | 1022 | int status = 0; |
1023 | const u32 memcheck = (mcopt1 & SDRAM_MCOPT1_MCHK_MASK); | 1023 | const u32 memcheck = (mcopt1 & SDRAM_MCOPT1_MCHK_MASK); |
1024 | struct ppc4xx_edac_pdata *pdata = NULL; | 1024 | struct ppc4xx_edac_pdata *pdata = NULL; |
1025 | const struct device_node *np = op->node; | 1025 | const struct device_node *np = op->dev.of_node; |
1026 | 1026 | ||
1027 | if (match == NULL) | 1027 | if (match == NULL) |
1028 | return -EINVAL; | 1028 | return -EINVAL; |
@@ -1113,7 +1113,7 @@ ppc4xx_edac_register_irq(struct of_device *op, struct mem_ctl_info *mci) | |||
1113 | int status = 0; | 1113 | int status = 0; |
1114 | int ded_irq, sec_irq; | 1114 | int ded_irq, sec_irq; |
1115 | struct ppc4xx_edac_pdata *pdata = mci->pvt_info; | 1115 | struct ppc4xx_edac_pdata *pdata = mci->pvt_info; |
1116 | struct device_node *np = op->node; | 1116 | struct device_node *np = op->dev.of_node; |
1117 | 1117 | ||
1118 | ded_irq = irq_of_parse_and_map(np, INTMAP_ECCDED_INDEX); | 1118 | ded_irq = irq_of_parse_and_map(np, INTMAP_ECCDED_INDEX); |
1119 | sec_irq = irq_of_parse_and_map(np, INTMAP_ECCSEC_INDEX); | 1119 | sec_irq = irq_of_parse_and_map(np, INTMAP_ECCSEC_INDEX); |
@@ -1243,7 +1243,7 @@ ppc4xx_edac_probe(struct of_device *op, const struct of_device_id *match) | |||
1243 | int status = 0; | 1243 | int status = 0; |
1244 | u32 mcopt1, memcheck; | 1244 | u32 mcopt1, memcheck; |
1245 | dcr_host_t dcr_host; | 1245 | dcr_host_t dcr_host; |
1246 | const struct device_node *np = op->node; | 1246 | const struct device_node *np = op->dev.of_node; |
1247 | struct mem_ctl_info *mci = NULL; | 1247 | struct mem_ctl_info *mci = NULL; |
1248 | static int ppc4xx_edac_instance; | 1248 | static int ppc4xx_edac_instance; |
1249 | 1249 | ||