Ignore:
File:
1 edited

Legend:

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

    rbf84871 rf0b74b2  
    3030#define RTL8139_DRIVER_H_
    3131
    32 #include "rtl8139_defs.h"
    33 #include "rtl8139_general.h"
     32#include "defs.h"
     33#include "general.h"
    3434#include <sys/types.h>
    3535#include <stdint.h>
    36 #include <dma.h>
    3736
    3837/** The driver name */
     
    9796         *  Each buffer takes 2kB
    9897         */
    99         dma_mem_t tx_buff_mem;
     98        void *tx_buff_phys;
     99        void *tx_buff_virt;
     100
    100101        /** Virtual adresses of the Tx buffers */
    101102        void *tx_buff[TX_BUFF_COUNT];
     
    112113
    113114        /** Buffer for receiving packets */
    114         dma_mem_t rx_buff;
     115        void *rx_buff_phys;
     116        void *rx_buff_virt;
    115117
    116118        /** Receiver control register data */
Note: See TracChangeset for help on using the changeset viewer.