Changeset 7943c43 in mainline for uspace/drv/nic/rtl8139/driver.h


Ignore:
Timestamp:
2012-01-16T22:45:38Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
32817cc, 3fe58d3c
Parents:
9117ef9b (diff), 3ea725e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

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

    r9117ef9b r7943c43  
    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.