Changeset 8426912a in mainline for uspace/srv/hw/netif/ne2000/dp8390.h
- Timestamp:
- 2011-01-14T12:35:19Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d450964
- Parents:
- 6610565b (diff), 08abd81 (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/netif/ne2000/dp8390.h
r6610565b r8426912a 50 50 51 51 #include <fibril_synch.h> 52 #include <adt/list.h> 52 53 #include <net/packet.h> 54 #include <netif_skel.h> 53 55 54 56 /** Module name */ … … 230 232 } ne2k_t; 231 233 234 typedef struct { 235 link_t link; 236 packet_t *packet; 237 } frame_t; 238 232 239 extern int ne2k_probe(ne2k_t *, void *, int); 233 240 extern int ne2k_up(ne2k_t *); 234 241 extern void ne2k_down(ne2k_t *); 235 242 extern void ne2k_send(ne2k_t *, packet_t *); 236 extern void ne2k_interrupt(ne2k_t *, uint8_t isr, int, device_id_t);243 extern link_t *ne2k_interrupt(ne2k_t *, uint8_t, uint8_t); 237 244 238 245 #endif
Note:
See TracChangeset
for help on using the changeset viewer.