Kernel - Slight reworks to timer code
[tpg/acess2.git] / Modules / Interfaces / UDI / physio / meta_bus.c
1 /**
2  * \file physio/meta_bus.c
3  * \author John Hodge (thePowersGang)
4  */
5 #include <acess.h>
6 #include <udi.h>
7 #include <udi_physio.h>
8
9 // === EXPORTS ===
10 EXPORT(udi_bus_unbind_req);
11 EXPORT(udi_bus_unbind_ack);
12 EXPORT(udi_bus_bind_req);
13 EXPORT(udi_bus_bind_ack);
14
15 // === CODE ===
16 void udi_bus_unbind_req(udi_bus_bind_cb_t *cb)
17 {
18         UNIMPLEMENTED();
19 }
20 void udi_bus_unbind_ack(udi_bus_bind_cb_t *cb)
21 {
22         UNIMPLEMENTED();
23 }
24
25 void udi_bus_bind_req(udi_bus_bind_cb_t *cb)
26 {
27         UNIMPLEMENTED();
28 }
29
30 void udi_bus_bind_ack(
31         udi_bus_bind_cb_t       *cb,
32         udi_dma_constraints_t   dma_constraints,
33         udi_ubit8_t     preferred_endianness,
34         udi_status_t    status
35         )
36 {
37         UNIMPLEMENTED();
38 }

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