Changeset 53a7fda in mainline
- Timestamp:
- 2011-11-25T22:10:04Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 25c98a8e
- Parents:
- 3df0f75
- Location:
- uspace/lib
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/dev_iface.h
r3df0f75 r53a7fda 36 36 typedef enum { 37 37 HW_RES_DEV_IFACE = 0, 38 39 /** Audio device mixer interface */ 40 AUDIO_MIXER_IFACE, 41 38 42 /** Character device interface */ 39 43 CHAR_DEV_IFACE, -
uspace/lib/drv/Makefile
r3df0f75 r53a7fda 37 37 generic/log.c \ 38 38 generic/logbuf.c \ 39 generic/remote_audio_mixer.c \ 39 40 generic/remote_hw_res.c \ 40 41 generic/remote_char_dev.c \ -
uspace/lib/drv/generic/dev_iface.c
r3df0f75 r53a7fda 46 46 #include "remote_usbhid.h" 47 47 #include "remote_pci.h" 48 #include "remote_audio_mixer.h" 48 49 49 static iface_dipatch_table_t remote_ifaces = {50 static const iface_dipatch_table_t remote_ifaces = { 50 51 .ifaces = { 51 &remote_hw_res_iface, 52 &remote_char_dev_iface, 53 &remote_nic_iface, 54 &remote_pci_iface, 55 &remote_usb_iface, 56 &remote_usbhc_iface, 57 &remote_usbhid_iface 52 [AUDIO_MIXER_IFACE] = &remote_audio_mixer_iface, 53 [HW_RES_DEV_IFACE] = &remote_hw_res_iface, 54 [CHAR_DEV_IFACE] = &remote_char_dev_iface, 55 [NIC_DEV_IFACE] = &remote_nic_iface, 56 [PCI_DEV_IFACE] = &remote_pci_iface, 57 [USB_DEV_IFACE] = &remote_usb_iface, 58 [USBHC_DEV_IFACE] = &remote_usbhc_iface, 59 [USBHID_DEV_IFACE] = &remote_usbhid_iface, 58 60 } 59 61 };
Note:
See TracChangeset
for help on using the changeset viewer.