fixed type error when calling hexdump()

This commit is contained in:
Markus Fröschle
2014-01-02 07:09:35 +00:00
parent 677dd268fb
commit 60cc9d3168

View File

@@ -2047,7 +2047,7 @@ int32_t radeonfb_pci_register(int32_t handle, const struct pci_device_id *ent)
{
dbg("%s: BIOS_IN16(0) was %x (expected 0xaa55)\r\n", __FUNCTION__, BIOS_IN16(0));
rinfo->bios_seg_phys = pci_rsc_desc->offset + pci_rsc_desc->start;
hexdump(rinfo->bios_seg_phys, 512);
hexdump((uint8_t *) rinfo->bios_seg_phys, 512);
//rinfo->bios_seg_phys = 0;
}
}