Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/pciintel/pci.c

    r7e752b2 r178673c  
    323323        if (range_addr != 0) {
    324324                printf(NAME ": device %s : ", dev->name);
    325                 printf("address = %" PRIx64, range_addr);
     325                printf("address = %x", range_addr);
    326326                printf(", size = %x\n", range_size);
    327327        }
     
    479479        }       
    480480       
    481         printf(NAME ": conf_addr = %" PRIx64 ".\n",
     481        printf(NAME ": conf_addr = %x.\n",
    482482            hw_resources.resources[0].res.io_range.address);
    483483       
     
    489489            (uint32_t) hw_resources.resources[0].res.io_range.address;
    490490       
    491         if (pio_enable((void *)bus_data->conf_io_addr, 8,
     491        if (pio_enable((void *)(uintptr_t)bus_data->conf_io_addr, 8,
    492492            &bus_data->conf_addr_port)) {
    493493                printf(NAME ": failed to enable configuration ports.\n");
Note: See TracChangeset for help on using the changeset viewer.