fix printk types
Some size_ts were considered long int and some compilers are picky about that. Change-Id: I671daa18eb3bfa2a7defc120e77bbb1ef72bd417 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/5788 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
a6b6172ae3
commit
6f7e4b21db
|
@ -1519,7 +1519,7 @@ static void i5000_dump_error_registers(void)
|
|||
|
||||
static void i5000_try_restart(const char *msg)
|
||||
{
|
||||
printk(BIOS_INFO, msg);
|
||||
printk(BIOS_INFO, "%s", msg);
|
||||
i5000_dump_error_registers();
|
||||
outb(0x06, 0xcf9);
|
||||
for(;;) asm volatile("hlt");
|
||||
|
|
|
@ -144,7 +144,7 @@ static u64 vx900_remap_above_4g(device_t mcu, u32 tolm)
|
|||
start8 = pci_read_config8(mcu, 0x48 + i);
|
||||
if (reg8 <= start8)
|
||||
continue;
|
||||
printk(BIOS_DEBUG, "Address %x falls on rank %ld\n", tolm, i);
|
||||
printk(BIOS_DEBUG, "Address %x falls on rank %zu\n", tolm, i);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -153,12 +153,12 @@ static u64 vx900_remap_above_4g(device_t mcu, u32 tolm)
|
|||
end = pci_read_config8(mcu, 0x40 + i);
|
||||
|
||||
if (end == 0) {
|
||||
printk(BIOS_DEBUG, "Huh? rank %ld empty?\n", i);
|
||||
printk(BIOS_DEBUG, "Huh? rank %zu empty?\n", i);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (end < (tolm >> 26)) {
|
||||
printk(BIOS_DEBUG, "Huh? rank %ld don't need remap?\n",
|
||||
printk(BIOS_DEBUG, "Huh? rank %zu don't need remap?\n",
|
||||
i);
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -1509,7 +1509,7 @@ static void vx900_dram_range(ramctr_timing * ctrl, rank_layout * ranks)
|
|||
|
||||
/* vvvvvvvvvv FIXME: Fix odd rank init vvvvvvvvvv */
|
||||
if ((i & 1)) {
|
||||
printk(BIOS_EMERG, "I cannot initialize rank %li\n", i);
|
||||
printk(BIOS_EMERG, "I cannot initialize rank %zu\n", i);
|
||||
print_emerg("I have to disable it\n");
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue