Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/dev_iface.c

    r8930624 r48bd6f4  
    4040#include "dev_iface.h"
    4141#include "remote_hw_res.h"
     42#include "remote_pio_window.h"
    4243#include "remote_char_dev.h"
    4344#include "remote_clock_dev.h"
     
    4950#include "remote_usbhid.h"
    5051#include "remote_pci.h"
     52#include "remote_audio_mixer.h"
     53#include "remote_audio_pcm.h"
    5154#include "remote_ahci.h"
    5255
    53 static iface_dipatch_table_t remote_ifaces = {
     56static const iface_dipatch_table_t remote_ifaces = {
    5457        .ifaces = {
    55                 &remote_hw_res_iface,
    56                 &remote_char_dev_iface,
    57                 &remote_graph_dev_iface,
    58                 &remote_nic_iface,
    59                 &remote_pci_iface,
    60                 &remote_usb_iface,
    61                 &remote_usbhc_iface,
    62                 &remote_usbhid_iface,
    63                 &remote_clock_dev_iface,
    64                 &remote_battery_dev_iface,
    65                 &remote_ahci_iface
     58                [AUDIO_MIXER_IFACE] = &remote_audio_mixer_iface,
     59                [AUDIO_PCM_BUFFER_IFACE] = &remote_audio_pcm_iface,
     60                [HW_RES_DEV_IFACE] = &remote_hw_res_iface,
     61                [PIO_WINDOW_DEV_IFACE] = &remote_pio_window_iface,
     62                [CHAR_DEV_IFACE] = &remote_char_dev_iface,
     63                [GRAPH_DEV_IFACE] = &remote_graph_dev_iface,
     64                [NIC_DEV_IFACE] = &remote_nic_iface,
     65                [PCI_DEV_IFACE] = &remote_pci_iface,
     66                [USB_DEV_IFACE] = &remote_usb_iface,
     67                [USBHC_DEV_IFACE] = &remote_usbhc_iface,
     68                [USBHID_DEV_IFACE] = &remote_usbhid_iface,
     69                [CLOCK_DEV_IFACE] = &remote_clock_dev_iface,
     70                [BATTERY_DEV_IFACE] = &remote_battery_dev_iface,
     71                [AHCI_DEV_IFACE] = &remote_ahci_iface
    6672        }
    6773};
Note: See TracChangeset for help on using the changeset viewer.