aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/mips/mti-malta/malta-memory.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/mips/mti-malta/malta-memory.c b/arch/mips/mti-malta/malta-memory.c
index 9235aee832c7..6d0f4ab3632d 100644
--- a/arch/mips/mti-malta/malta-memory.c
+++ b/arch/mips/mti-malta/malta-memory.c
@@ -111,6 +111,12 @@ fw_memblock_t * __init fw_getmdesc(int eva)
111 return &mdesc[0]; 111 return &mdesc[0];
112} 112}
113 113
114static void free_init_pages_eva_malta(void *begin, void *end)
115{
116 free_init_pages("unused kernel", __pa_symbol((unsigned long *)begin),
117 __pa_symbol((unsigned long *)end));
118}
119
114static int __init fw_memtype_classify(unsigned int type) 120static int __init fw_memtype_classify(unsigned int type)
115{ 121{
116 switch (type) { 122 switch (type) {
@@ -128,6 +134,8 @@ void __init fw_meminit(void)
128 fw_memblock_t *p; 134 fw_memblock_t *p;
129 135
130 p = fw_getmdesc(config_enabled(CONFIG_EVA)); 136 p = fw_getmdesc(config_enabled(CONFIG_EVA));
137 free_init_pages_eva = (config_enabled(CONFIG_EVA) ?
138 free_init_pages_eva_malta : NULL);
131 139
132 while (p->size) { 140 while (p->size) {
133 long type; 141 long type;