From 60cc9d31682e318644487fdb049f89e00375aa58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Thu, 2 Jan 2014 07:09:35 +0000 Subject: [PATCH] fixed type error when calling hexdump() --- BaS_gcc/radeon/radeon_base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_gcc/radeon/radeon_base.c b/BaS_gcc/radeon/radeon_base.c index 5694258..b8d99f4 100644 --- a/BaS_gcc/radeon/radeon_base.c +++ b/BaS_gcc/radeon/radeon_base.c @@ -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; } }