diff options
author | Greg Ungerer <gerg@snapgear.com> | 2006-06-26 10:33:10 +1000 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 17:43:33 -0700 |
commit | 2082b477dc7e9d5b3f773a36aae2dbc55b4263c2 (patch) | |
tree | 5c86a1d6ddc1c55cb2cd4dd84ee5b789f6e79c73 /arch | |
parent | 36a248fadf96cd78c6b344442046db5b85cf9a70 (diff) | |
download | linux-3.10-2082b477dc7e9d5b3f773a36aae2dbc55b4263c2.tar.gz linux-3.10-2082b477dc7e9d5b3f773a36aae2dbc55b4263c2.tar.bz2 linux-3.10-2082b477dc7e9d5b3f773a36aae2dbc55b4263c2.zip |
[PATCH] m68knommu: remove use of rom_length
Remove use of rom_length. It serves not real purpose, and when we move
to new stye RAM configuration it will not be needed.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/m68knommu/mm/init.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/m68knommu/mm/init.c b/arch/m68knommu/mm/init.c index d79503fe6e4..70d1653be3d 100644 --- a/arch/m68knommu/mm/init.c +++ b/arch/m68knommu/mm/init.c @@ -63,8 +63,6 @@ static unsigned long empty_bad_page; unsigned long empty_zero_page; -extern unsigned long rom_length; - void show_mem(void) { unsigned long i; @@ -178,11 +176,9 @@ void mem_init(void) initk = (&__init_begin - &__init_end) >> 10; tmp = nr_free_pages() << PAGE_SHIFT; - printk(KERN_INFO "Memory available: %luk/%luk RAM, %luk/%luk ROM (%dk kernel code, %dk data)\n", + printk(KERN_INFO "Memory available: %luk/%luk RAM, (%dk kernel code, %dk data)\n", tmp >> 10, len >> 10, - (rom_length > 0) ? ((rom_length >> 10) - codek) : 0, - rom_length >> 10, codek, datak ); |