diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-06-01 10:40:59 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-06-11 13:20:55 -0400 |
commit | e10e0cc8852ac846d5590188b935c98742e5cc43 (patch) | |
tree | c0bcf9b607c3d7f939ccb6d47cc2407bf349e8dc /arch/mips | |
parent | 4ebd5233f0420f1e383c38f962ec84c4d53fbbad (diff) |
[MIPS] Fix IP27 build
IP27 does no longer have ZONE_DMA.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sgi-ip27/ip27-memory.c b/arch/mips/sgi-ip27/ip27-memory.c index fe8a1066aec1..e5e023f50a07 100644 --- a/arch/mips/sgi-ip27/ip27-memory.c +++ b/arch/mips/sgi-ip27/ip27-memory.c | |||
@@ -517,7 +517,7 @@ void __init paging_init(void) | |||
517 | pfn_t start_pfn = slot_getbasepfn(node, 0); | 517 | pfn_t start_pfn = slot_getbasepfn(node, 0); |
518 | pfn_t end_pfn = node_getmaxclick(node) + 1; | 518 | pfn_t end_pfn = node_getmaxclick(node) + 1; |
519 | 519 | ||
520 | zones_size[ZONE_DMA] = end_pfn - start_pfn; | 520 | zones_size[ZONE_NORMAL] = end_pfn - start_pfn; |
521 | free_area_init_node(node, NODE_DATA(node), | 521 | free_area_init_node(node, NODE_DATA(node), |
522 | zones_size, start_pfn, NULL); | 522 | zones_size, start_pfn, NULL); |
523 | 523 | ||