diff options
author | Dave Jiang <djiang@mvista.com> | 2008-07-25 04:49:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-25 13:53:49 -0400 |
commit | 596d3941035d4d4b484c820f10f57fd4816c6615 (patch) | |
tree | 64a2321e151068b4304cd1ef8d8d29632aed60c4 /drivers/edac | |
parent | 10d33e9c36827e5371479e55ef4089e000af2638 (diff) |
edac: mv64x60 fix get_property
Update get_property() call to use of_get_property() in order to fix compile
Signed-off-by: Dave Jiang <djiang@mvista.com>
Signed-off-by: Doug Thompson <dougthompson.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/mv64x60_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/mv64x60_edac.c b/drivers/edac/mv64x60_edac.c index bf071f140a05..de69163ff5b3 100644 --- a/drivers/edac/mv64x60_edac.c +++ b/drivers/edac/mv64x60_edac.c | |||
@@ -612,7 +612,7 @@ static void get_total_mem(struct mv64x60_mc_pdata *pdata) | |||
612 | if (!np) | 612 | if (!np) |
613 | return; | 613 | return; |
614 | 614 | ||
615 | reg = get_property(np, "reg", NULL); | 615 | reg = of_get_property(np, "reg", NULL); |
616 | 616 | ||
617 | pdata->total_mem = reg[1]; | 617 | pdata->total_mem = reg[1]; |
618 | } | 618 | } |