powerpc/fsl-booke: Fix compile warning
authorKumar Gala <galak@kernel.crashing.org>
Thu, 12 Feb 2009 15:39:23 +0000 (09:39 -0600)
committerKumar Gala <galak@kernel.crashing.org>
Thu, 12 Feb 2009 22:54:53 +0000 (16:54 -0600)
arch/powerpc/mm/fsl_booke_mmu.c: In function 'adjust_total_lowmem':
arch/powerpc/mm/fsl_booke_mmu.c:221: warning: format '%ld' expects type 'long int', but argument 3 has type 'phys_addr_t'

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/mm/fsl_booke_mmu.c

index 6d38d77ebe25d03bfcc015da56f15165c74b018d..985b6c361ab4c05e93eee53782933296a91301ec 100644 (file)
@@ -218,7 +218,7 @@ adjust_total_lowmem(void)
                p += sprintf(p, "0/");
        p[-1] = '\0';
 
-       pr_info("Memory CAM mapping: %s Mb, residual: %ldMb\n", buf,
-               (total_lowmem - __max_low_memory) >> 20);
+       pr_info("Memory CAM mapping: %s Mb, residual: %dMb\n", buf,
+               (unsigned int)((total_lowmem - __max_low_memory) >> 20));
        __initial_memory_limit_addr = memstart_addr + __max_low_memory;
 }
This page took 0.028029 seconds and 5 git commands to generate.