Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45808
b: refs/heads/master
c: 80aac59
h: refs/heads/master
v: v3
  • Loading branch information
Thiemo Seufer authored and Ralf Baechle committed Jan 24, 2007
1 parent 8a7f277 commit 641b603
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3f3183709feb35c30ca5f649224d01921870f81c
refs/heads/master: 80aac59ed5b3e5ae2132bc620ff5607929c6a304
2 changes: 1 addition & 1 deletion trunk/arch/mips/dec/prom/memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ unsigned long __init prom_free_prom_memory(void)
addr += PAGE_SIZE;
}

printk("Freeing unused PROM memory: %ldk freed\n",
printk("Freeing unused PROM memory: %ldkb freed\n",
(end - PAGE_SIZE) >> 10);

return end - PAGE_SIZE;
Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/mips/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,8 @@ void free_initmem(void)

freed = prom_free_prom_memory();
if (freed)
printk(KERN_INFO "Freeing firmware memory: %ldk freed\n",freed);
printk(KERN_INFO "Freeing firmware memory: %ldkb freed\n",
freed >> 10);

free_init_pages("unused kernel memory",
__pa_symbol(&__init_begin),
Expand Down

0 comments on commit 641b603

Please sign in to comment.