Changes in uspace/drv/pciintel/pci.c [178673c:7e752b2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/pciintel/pci.c
r178673c r7e752b2 323 323 if (range_addr != 0) { 324 324 printf(NAME ": device %s : ", dev->name); 325 printf("address = % x", range_addr);325 printf("address = %" PRIx64, range_addr); 326 326 printf(", size = %x\n", range_size); 327 327 } … … 479 479 } 480 480 481 printf(NAME ": conf_addr = % x.\n",481 printf(NAME ": conf_addr = %" PRIx64 ".\n", 482 482 hw_resources.resources[0].res.io_range.address); 483 483 … … 489 489 (uint32_t) hw_resources.resources[0].res.io_range.address; 490 490 491 if (pio_enable((void *) (uintptr_t)bus_data->conf_io_addr, 8,491 if (pio_enable((void *)bus_data->conf_io_addr, 8, 492 492 &bus_data->conf_addr_port)) { 493 493 printf(NAME ": failed to enable configuration ports.\n");
Note:
See TracChangeset
for help on using the changeset viewer.