Changes in uspace/drv/nic/rtl8139/driver.c [99e8fb7b:d87561c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/nic/rtl8139/driver.c
r99e8fb7b rd87561c 41 41 #include <io/log.h> 42 42 #include <nic.h> 43 #include < pci_dev_iface.h>43 #include <device/pci.h> 44 44 45 45 #include <ipc/irc.h> … … 190 190 return; 191 191 } 192 193 #include <device/pci.h> 192 194 193 195 /** Set PmEn (Power management enable) bit value … … 1085 1087 ddf_msg(LVL_DEBUG, "%s device: irq 0x%x assigned", ddf_dev_get_name(dev), rtl8139->irq); 1086 1088 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); 1088 1090 if (hw_resources->io_ranges.ranges[0].size < RTL8139_IO_SIZE) { 1089 1091 ddf_msg(LVL_ERROR, "i/o range assigned to the device " … … 1142 1144 ddf_msg(LVL_DEBUG, "Creating buffers"); 1143 1145 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); 1146 1148 if (rc != EOK) { 1147 1149 ddf_msg(LVL_ERROR, "Can not allocate transmitter buffers."); … … 1162 1164 RxBUF_TOT_LENGTH); 1163 1165 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); 1166 1168 if (rc != EOK) { 1167 1169 ddf_msg(LVL_ERROR, "Can not allocate receive buffer.");
Note:
See TracChangeset
for help on using the changeset viewer.