Changes in uspace/lib/drv/generic/dev_iface.c [22027b6e:d7c72db] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/dev_iface.c
r22027b6e rd7c72db 41 41 #include "remote_hw_res.h" 42 42 #include "remote_char_dev.h" 43 #include "remote_usb.h" 44 #include "remote_usbhc.h" 45 #include "remote_usbhid.h" 46 #include "remote_pci.h" 47 48 #include <stdio.h> 43 49 44 50 static iface_dipatch_table_t remote_ifaces = { 45 51 .ifaces = { 46 52 &remote_hw_res_iface, 47 &remote_char_dev_iface 53 &remote_char_dev_iface, 54 &remote_pci_iface, 55 &remote_usb_iface, 56 &remote_usbhc_iface, 57 &remote_usbhid_iface 48 58 } 49 59 }; … … 52 62 { 53 63 assert(is_valid_iface_idx(idx)); 64 54 65 return remote_ifaces.ifaces[idx]; 55 66 }
Note:
See TracChangeset
for help on using the changeset viewer.