Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/rtl8139/driver.c

    r99e8fb7b rd87561c  
    4141#include <io/log.h>
    4242#include <nic.h>
    43 #include <pci_dev_iface.h>
     43#include <device/pci.h>
    4444
    4545#include <ipc/irc.h>
     
    190190        return;
    191191}
     192
     193#include <device/pci.h>
    192194
    193195/** Set PmEn (Power management enable) bit value
     
    10851087        ddf_msg(LVL_DEBUG, "%s device: irq 0x%x assigned", ddf_dev_get_name(dev), rtl8139->irq);
    10861088
    1087         rtl8139->io_addr = IOADDR_TO_PTR(RNGABS(hw_resources->io_ranges.ranges[0]));
     1089        rtl8139->io_addr = IOADDR_TO_PTR(hw_resources->io_ranges.ranges[0].address);
    10881090        if (hw_resources->io_ranges.ranges[0].size < RTL8139_IO_SIZE) {
    10891091                ddf_msg(LVL_ERROR, "i/o range assigned to the device "
     
    11421144        ddf_msg(LVL_DEBUG, "Creating buffers");
    11431145
    1144         rc = dmamem_map_anonymous(TX_PAGES * PAGE_SIZE, DMAMEM_4GiB,
    1145             AS_AREA_WRITE, 0, &rtl8139->tx_buff_phys, &rtl8139->tx_buff_virt);
     1146        rc = dmamem_map_anonymous(TX_PAGES * PAGE_SIZE, AS_AREA_WRITE, 0,
     1147            &rtl8139->tx_buff_phys, &rtl8139->tx_buff_virt);
    11461148        if (rc != EOK) {
    11471149                ddf_msg(LVL_ERROR, "Can not allocate transmitter buffers.");
     
    11621164            RxBUF_TOT_LENGTH);
    11631165
    1164         rc = dmamem_map_anonymous(RxBUF_TOT_LENGTH, DMAMEM_4GiB,
    1165             AS_AREA_READ, 0, &rtl8139->rx_buff_phys, &rtl8139->rx_buff_virt);
     1166        rc = dmamem_map_anonymous(RxBUF_TOT_LENGTH, AS_AREA_READ, 0,
     1167            &rtl8139->rx_buff_phys, &rtl8139->rx_buff_virt);
    11661168        if (rc != EOK) {
    11671169                ddf_msg(LVL_ERROR, "Can not allocate receive buffer.");
Note: See TracChangeset for help on using the changeset viewer.