UDI/ne2000 - Incomplete TX implementation
[tpg/acess2.git] / UDI / drivers / net_ne2000 / ne2000_tx.c
1 /*
2  * UDI Ne2000 NIC Driver
3  * By John Hodge (thePowersGang)
4  *
5  * ne2000_tx.c
6  * - Transmit Code
7  */
8 #include <udi.h>
9 #include <udi_nic.h>
10 #include "ne2000_common.h"
11
12 // === PROTOTYPES ===
13
14 // === CODE ===
15 void ne2k_nd_tx_channel_event_ind(udi_channel_event_cb_t *cb)
16 {
17 }
18
19 void ne2k_nd_tx_tx_req(udi_nic_tx_cb_t *cb)
20 {
21         // TODO: TX request
22         udi_debug_printf("ne2k_nd_tx_tx_req: %p\n", cb);
23         udi_nsr_tx_rdy(cb);
24 }
25
26 void ne2k_nd_tx_exp_tx_req(udi_nic_tx_cb_t *cb)
27 {
28         // TODO: "expediant" TX reqest
29         ne2k_nd_tx_tx_req(cb);
30 }
31
32
33

UCC git Repository :: git.ucc.asn.au