]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mm/c6x: prepare for removing num_physpages and simplify mem_init()
authorJiang Liu <liuj97@gmail.com>
Fri, 7 Jun 2013 00:08:07 +0000 (10:08 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 7 Jun 2013 05:42:23 +0000 (15:42 +1000)
Prepare for removing num_physpages and simplify mem_init().

Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Cc: Mark Salter <msalter@redhat.com>
Cc: Aurelien Jacquiot <a-jacquiot@ti.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/c6x/mm/init.c

index df3714bdee38754a9a5b8abc4ce9522095dbe292..e524fde360db34f7618ebd3fad49682a45f9242a 100644 (file)
@@ -57,21 +57,12 @@ void __init paging_init(void)
 
 void __init mem_init(void)
 {
-       int codek, datak;
-       unsigned long tmp;
-       unsigned long len = memory_end - memory_start;
-
        high_memory = (void *)(memory_end & PAGE_MASK);
 
        /* this will put all memory onto the freelists */
        free_all_bootmem();
 
-       codek = (_etext - _stext) >> 10;
-       datak = (_end - _sdata) >> 10;
-
-       tmp = nr_free_pages() << PAGE_SHIFT;
-       printk(KERN_INFO "Memory: %luk/%luk RAM (%dk kernel code, %dk data)\n",
-              tmp >> 10, len >> 10, codek, datak);
+       mem_init_print_info(NULL);
 }
 
 #ifdef CONFIG_BLK_DEV_INITRD