Changeset d6b1359 in mainline for uspace/lib/drv/generic/dev_iface.c
- Timestamp:
- 2011-01-09T18:00:14Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 80bffdb0
- Parents:
- 0c70f7e (diff), 8871dba (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/drv/generic/dev_iface.c
r0c70f7e rd6b1359 37 37 38 38 #include "dev_iface.h" 39 #include "remote_ res.h"40 #include "remote_char .h"39 #include "remote_hw_res.h" 40 #include "remote_char_dev.h" 41 41 42 42 static iface_dipatch_table_t remote_ifaces = { 43 43 .ifaces = { 44 &remote_ res_iface,45 &remote_char_ iface44 &remote_hw_res_iface, 45 &remote_char_dev_iface 46 46 } 47 47 }; 48 48 49 49 remote_iface_t* get_remote_iface(int idx) 50 { 50 { 51 51 assert(is_valid_iface_idx(idx)); 52 52 return remote_ifaces.ifaces[idx];
Note:
See TracChangeset
for help on using the changeset viewer.