Changeset 948911d in mainline for uspace/lib/nic/include/nic_driver.h
- Timestamp:
- 2012-01-24T02:27:43Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 230385c
- Parents:
- 8afeb04 (diff), 2df6f6fe (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/include/nic_driver.h
r8afeb04 r948911d 44 44 45 45 #include <fibril_synch.h> 46 #include <n et/device.h>46 #include <nic/nic.h> 47 47 #include <async.h> 48 48 … … 50 50 #include "nic_rx_control.h" 51 51 #include "nic_wol_virtues.h" 52 53 #define DEVICE_CATEGORY_NIC "nic"54 52 55 53 struct sw_poll_info { … … 82 80 /** Device's default MAC address (assigned the first time, used in STOP) */ 83 81 nic_address_t default_mac; 84 /** Session to SERVICE_NETWORKING */ 85 async_sess_t *net_session; 86 /** Session to SERVICE_ETHERNET or SERVICE_NILDUMMY */ 87 async_sess_t *nil_session; 82 /** Client callback session */ 83 async_sess_t *client_session; 88 84 /** Phone to APIC or i8259 */ 89 85 async_sess_t *irc_session; … … 134 130 * Called with the main_lock locked for reading. 135 131 */ 136 write_packet_handler write_packet;132 send_frame_handler send_frame; 137 133 /** 138 134 * Event handler called when device goes to the ACTIVE state.
Note:
See TracChangeset
for help on using the changeset viewer.