/linux-4.1.27/drivers/i2c/busses/ |
D | i2c-bfin-twi.c | 36 static void bfin_twi_handle_interrupt(struct bfin_twi_iface *iface, in bfin_twi_handle_interrupt() argument 39 unsigned short mast_stat = read_MASTER_STAT(iface); in bfin_twi_handle_interrupt() 42 if (iface->writeNum <= 0) { in bfin_twi_handle_interrupt() 46 if (iface->cur_mode == TWI_I2C_MODE_COMBINED) in bfin_twi_handle_interrupt() 47 write_MASTER_CTL(iface, in bfin_twi_handle_interrupt() 48 read_MASTER_CTL(iface) | MDIR); in bfin_twi_handle_interrupt() 49 else if (iface->manual_stop) in bfin_twi_handle_interrupt() 50 write_MASTER_CTL(iface, in bfin_twi_handle_interrupt() 51 read_MASTER_CTL(iface) | STOP); in bfin_twi_handle_interrupt() 52 else if (iface->cur_mode == TWI_I2C_MODE_REPEAT && in bfin_twi_handle_interrupt() [all …]
|
D | scx200_acb.c | 88 #define ACBSDA (iface->base + 0) 89 #define ACBST (iface->base + 1) 95 #define ACBCST (iface->base + 2) 97 #define ACBCTL1 (iface->base + 3) 103 #define ACBADDR (iface->base + 4) 104 #define ACBCTL2 (iface->base + 5) 109 static void scx200_acb_machine(struct scx200_acb_iface *iface, u8 status) in scx200_acb_machine() argument 113 dev_dbg(&iface->adapter.dev, "state %s, status = 0x%02x\n", in scx200_acb_machine() 114 scx200_acb_state_name[iface->state], status); in scx200_acb_machine() 125 dev_dbg(&iface->adapter.dev, "negative ack in state %s\n", in scx200_acb_machine() [all …]
|
/linux-4.1.27/arch/blackfin/include/asm/ |
D | bfin_twi.h | 15 static inline u16 read_##reg_name(struct bfin_twi_iface *iface) \ 16 { return bfin_read16(&iface->regs_base->reg); } \ 17 static inline void write_##reg_name(struct bfin_twi_iface *iface, u16 v) \ 18 { bfin_write16(&iface->regs_base->reg, v); } 36 static inline u16 read_RCV_DATA8(struct bfin_twi_iface *iface) in DEFINE_TWI_REG() 42 ret = bfin_read16(&iface->regs_base->rcv_data8); in DEFINE_TWI_REG() 48 static inline u16 read_RCV_DATA16(struct bfin_twi_iface *iface) 54 ret = bfin_read16(&iface->regs_base->rcv_data16); 61 static inline u16 read_FIFO_CTL(struct bfin_twi_iface *iface) 63 return bfin_read16(&iface->regs_base->fifo_ctl); [all …]
|
/linux-4.1.27/net/netlabel/ |
D | netlabel_unlabeled.c | 169 struct netlbl_unlhsh_iface *iface; in netlbl_unlhsh_free_iface() local 177 iface = container_of(entry, struct netlbl_unlhsh_iface, rcu); in netlbl_unlhsh_free_iface() 182 netlbl_af4list_foreach_safe(iter4, tmp4, &iface->addr4_list) { in netlbl_unlhsh_free_iface() 187 netlbl_af6list_foreach_safe(iter6, tmp6, &iface->addr6_list) { in netlbl_unlhsh_free_iface() 192 kfree(iface); in netlbl_unlhsh_free_iface() 250 static int netlbl_unlhsh_add_addr4(struct netlbl_unlhsh_iface *iface, in netlbl_unlhsh_add_addr4() argument 268 ret_val = netlbl_af4list_add(&entry->list, &iface->addr4_list); in netlbl_unlhsh_add_addr4() 290 static int netlbl_unlhsh_add_addr6(struct netlbl_unlhsh_iface *iface, in netlbl_unlhsh_add_addr6() argument 312 ret_val = netlbl_af6list_add(&entry->list, &iface->addr6_list); in netlbl_unlhsh_add_addr6() 334 struct netlbl_unlhsh_iface *iface; in netlbl_unlhsh_add_iface() local [all …]
|
/linux-4.1.27/sound/usb/ |
D | quirks.c | 44 struct usb_interface *iface, in create_composite_quirk() argument 48 int probed_ifnum = get_iface_desc(iface->altsetting)->bInterfaceNumber; in create_composite_quirk() 53 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum); in create_composite_quirk() 54 if (!iface) in create_composite_quirk() 57 usb_interface_claimed(iface)) in create_composite_quirk() 59 err = snd_usb_create_quirk(chip, iface, driver, quirk); in create_composite_quirk() 65 iface = usb_ifnum_to_if(chip->dev, quirk->ifnum); in create_composite_quirk() 66 if (!iface) in create_composite_quirk() 69 !usb_interface_claimed(iface)) in create_composite_quirk() 70 usb_driver_claim_interface(driver, iface, (void *)-1L); in create_composite_quirk() [all …]
|
D | clock.c | 279 static int set_sample_rate_v1(struct snd_usb_audio *chip, int iface, in set_sample_rate_v1() argument 304 iface, fmt->altsetting, rate, ep); in set_sample_rate_v1() 318 iface, fmt->altsetting, ep); in set_sample_rate_v1() 331 static int get_sample_rate_v2(struct snd_usb_audio *chip, int iface, in get_sample_rate_v2() argument 345 iface, altsetting, err); in get_sample_rate_v2() 352 static int set_sample_rate_v2(struct snd_usb_audio *chip, int iface, in set_sample_rate_v2() argument 367 prev_rate = get_sample_rate_v2(chip, iface, fmt->altsetting, clock); in set_sample_rate_v2() 383 iface, fmt->altsetting, rate, err); in set_sample_rate_v2() 387 cur_rate = get_sample_rate_v2(chip, iface, fmt->altsetting, clock); in set_sample_rate_v2() 396 iface, fmt->altsetting, rate, cur_rate); in set_sample_rate_v2() [all …]
|
D | pcm.c | 153 static int init_pitch_v1(struct snd_usb_audio *chip, int iface, in init_pitch_v1() argument 172 iface, ep); in init_pitch_v1() 179 static int init_pitch_v2(struct snd_usb_audio *chip, int iface, in init_pitch_v2() argument 193 iface, fmt->altsetting); in init_pitch_v2() 203 int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface, in snd_usb_init_pitch() argument 214 return init_pitch_v1(chip, iface, alts, fmt); in snd_usb_init_pitch() 217 return init_pitch_v2(chip, iface, alts, fmt); in snd_usb_init_pitch() 245 if (subs->data_endpoint->iface != subs->sync_endpoint->iface || in start_endpoints() 248 subs->sync_endpoint->iface, in start_endpoints() 254 subs->sync_endpoint->iface, in start_endpoints() [all …]
|
D | card.c | 137 struct usb_interface *iface = usb_ifnum_to_if(dev, interface); in snd_usb_create_stream() local 139 if (!iface) { in snd_usb_create_stream() 145 alts = &iface->altsetting[0]; in snd_usb_create_stream() 158 iface = usb_ifnum_to_if(dev, interface); in snd_usb_create_stream() 159 if (!iface) in snd_usb_create_stream() 161 alts = &iface->altsetting[0]; in snd_usb_create_stream() 165 if (usb_interface_claimed(iface)) { in snd_usb_create_stream() 174 int err = snd_usbmidi_create(chip->card, iface, in snd_usb_create_stream() 182 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L); in snd_usb_create_stream() 204 usb_driver_claim_interface(&usb_audio_driver, iface, (void *)-1L); in snd_usb_create_stream() [all …]
|
D | quirks-table.h | 62 .iface = 1, 522 .iface = 0, 539 .iface = 1, 1010 .iface = 1, 1027 .iface = 2, 1631 .iface = 0, 1649 .iface = 1, 1698 .iface = 0, 1716 .iface = 1, 2111 .iface = 2, [all …]
|
D | format.c | 78 fp->iface, fp->altsetting); in parse_audio_format_i_type() 90 fp->iface, fp->altsetting, in parse_audio_format_i_type() 116 fp->iface, fp->altsetting, in parse_audio_format_i_type() 141 fp->iface, fp->altsetting, format); in parse_audio_format_i_type() 168 fp->iface, fp->altsetting); in parse_audio_format_rates_v1() 423 fp->iface, fp->altsetting, fp->channels); in parse_audio_format_i() 451 fp->iface, fp->altsetting, format); in parse_audio_format_ii() 501 fp->iface, fp->altsetting, in snd_usb_parse_audio_format()
|
D | helper.h | 21 #define get_iface_desc(iface) (&(iface)->desc) argument
|
D | quirks.h | 9 struct usb_interface *iface, 14 int iface,
|
D | card.h | 17 int iface; /* interface number */ member 100 int iface, altsetting; member
|
D | mixer_quirks.c | 270 hwdep->iface = SNDRV_HWDEP_IFACE_SB_RC; in snd_usb_soundblaster_remote_init() 365 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 522 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 590 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 717 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 861 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_nativeinstruments_create_mixer() 974 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_ftu_create_effect_switch() 1506 struct usb_interface *iface; in snd_microii_spdif_default_get() local 1521 iface = usb_ifnum_to_if(chip->dev, 1); in snd_microii_spdif_default_get() 1522 if (!iface || iface->num_altsetting < 2) in snd_microii_spdif_default_get() [all …]
|
D | clock.h | 4 int snd_usb_init_sample_rate(struct snd_usb_audio *chip, int iface,
|
D | pcm.h | 9 int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
|
D | midi.h | 43 struct usb_interface *iface,
|
D | stream.c | 474 struct usb_interface *iface; in snd_usb_parse_audio_interface() local 487 iface = usb_ifnum_to_if(dev, iface_no); in snd_usb_parse_audio_interface() 489 num = iface->num_altsetting; in snd_usb_parse_audio_interface() 499 alts = &iface->altsetting[i]; in snd_usb_parse_audio_interface() 657 fp->iface = iface_no; in snd_usb_parse_audio_interface()
|
D | mixer_scarlett.c | 481 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 491 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 503 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 515 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 523 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 531 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
D | midi.c | 112 struct usb_interface *iface; member 1078 intf = umidi->iface; in update_roland_altsetting() 1820 intf = umidi->iface; in snd_usbmidi_get_ms_info() 1924 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1942 intf = umidi->iface; in snd_usbmidi_switch_roland_altsetting() 1984 intf = umidi->iface; in snd_usbmidi_detect_endpoints() 2042 intf = umidi->iface; in snd_usbmidi_detect_yamaha() 2082 intf = umidi->iface; in snd_usbmidi_detect_roland() 2123 intf = umidi->iface; in snd_usbmidi_create_endpoints_midiman() 2320 struct usb_interface *iface, in snd_usbmidi_create() argument [all …]
|
/linux-4.1.27/net/netfilter/ipset/ |
D | ip_set_hash_netiface.c | 44 char iface[IFNAMSIZ]; member 47 #define iface_data(n) (rb_entry(n, struct iface_node, node)->iface) 61 iface_test(struct rb_root *root, const char **iface) in iface_test() argument 67 int res = strcmp(*iface, d); in iface_test() 74 *iface = d; in iface_test() 82 iface_add(struct rb_root *root, const char **iface) in iface_add() argument 89 int res = strcmp(*iface, ifname); in iface_add() 97 *iface = ifname; in iface_add() 105 strcpy(d->iface, *iface); in iface_add() 110 *iface = d->iface; in iface_add() [all …]
|
/linux-4.1.27/drivers/net/wireless/hostap/ |
D | hostap_pci.c | 57 struct hostap_interface *iface; in hfa384x_outb_debug() local 62 iface = netdev_priv(dev); in hfa384x_outb_debug() 63 local = iface->local; in hfa384x_outb_debug() 74 struct hostap_interface *iface; in hfa384x_inb_debug() local 80 iface = netdev_priv(dev); in hfa384x_inb_debug() 81 local = iface->local; in hfa384x_inb_debug() 93 struct hostap_interface *iface; in hfa384x_outw_debug() local 98 iface = netdev_priv(dev); in hfa384x_outw_debug() 99 local = iface->local; in hfa384x_outw_debug() 110 struct hostap_interface *iface; in hfa384x_inw_debug() local [all …]
|
D | hostap_cs.c | 48 struct hostap_interface *iface; in hfa384x_outb_debug() local 52 iface = netdev_priv(dev); in hfa384x_outb_debug() 53 local = iface->local; in hfa384x_outb_debug() 62 struct hostap_interface *iface; in hfa384x_inb_debug() local 67 iface = netdev_priv(dev); in hfa384x_inb_debug() 68 local = iface->local; in hfa384x_inb_debug() 78 struct hostap_interface *iface; in hfa384x_outw_debug() local 82 iface = netdev_priv(dev); in hfa384x_outw_debug() 83 local = iface->local; in hfa384x_outw_debug() 92 struct hostap_interface *iface; in hfa384x_inw_debug() local [all …]
|
D | hostap_main.c | 55 struct hostap_interface *iface; in hostap_add_interface() local 62 iface = netdev_priv(dev); in hostap_add_interface() 63 iface->dev = dev; in hostap_add_interface() 64 iface->local = local; in hostap_add_interface() 65 iface->type = type; in hostap_add_interface() 66 list_add(&iface->list, &local->hostap_interfaces); in hostap_add_interface() 105 struct hostap_interface *iface; in hostap_remove_interface() local 110 iface = netdev_priv(dev); in hostap_remove_interface() 113 list_del(&iface->list); in hostap_remove_interface() 116 if (dev == iface->local->ddev) in hostap_remove_interface() [all …]
|
D | hostap_80211_tx.c | 63 struct hostap_interface *iface; in hostap_data_start_xmit() local 76 iface = netdev_priv(dev); in hostap_data_start_xmit() 77 local = iface->local; in hostap_data_start_xmit() 179 else if (iface->type == HOSTAP_INTERFACE_WDS) in hostap_data_start_xmit() 180 memcpy(&hdr.addr1, iface->u.wds.remote_addr, in hostap_data_start_xmit() 216 iface->stats.tx_dropped++; in hostap_data_start_xmit() 222 iface->stats.tx_dropped++; in hostap_data_start_xmit() 230 iface->stats.tx_dropped++; in hostap_data_start_xmit() 236 iface->stats.tx_dropped++; in hostap_data_start_xmit() 248 iface->stats.tx_packets++; in hostap_data_start_xmit() [all …]
|
D | hostap_ioctl.c | 18 struct hostap_interface *iface; in hostap_get_wireless_stats() local 22 iface = netdev_priv(dev); in hostap_get_wireless_stats() 23 local = iface->local; in hostap_get_wireless_stats() 26 if (iface->type != HOSTAP_INTERFACE_MAIN) in hostap_get_wireless_stats() 78 struct hostap_interface *iface; in prism2_get_datarates() local 84 iface = netdev_priv(dev); in prism2_get_datarates() 85 local = iface->local; in prism2_get_datarates() 128 struct hostap_interface *iface; in prism2_ioctl_siwencode() local 133 iface = netdev_priv(dev); in prism2_ioctl_siwencode() 134 local = iface->local; in prism2_ioctl_siwencode() [all …]
|
D | hostap_plx.c | 110 struct hostap_interface *iface; in hfa384x_outb_debug() local 114 iface = netdev_priv(dev); in hfa384x_outb_debug() 115 local = iface->local; in hfa384x_outb_debug() 125 struct hostap_interface *iface; in hfa384x_inb_debug() local 130 iface = netdev_priv(dev); in hfa384x_inb_debug() 131 local = iface->local; in hfa384x_inb_debug() 142 struct hostap_interface *iface; in hfa384x_outw_debug() local 146 iface = netdev_priv(dev); in hfa384x_outw_debug() 147 local = iface->local; in hfa384x_outw_debug() 157 struct hostap_interface *iface; in hfa384x_inw_debug() local [all …]
|
D | hostap_hw.c | 257 struct hostap_interface *iface; in hfa384x_cmd_issue() local 263 iface = netdev_priv(dev); in hfa384x_cmd_issue() 264 local = iface->local; in hfa384x_cmd_issue() 324 struct hostap_interface *iface; in hfa384x_cmd() local 331 iface = netdev_priv(dev); in hfa384x_cmd() 332 local = iface->local; in hfa384x_cmd() 500 struct hostap_interface *iface; in hfa384x_cmd_callback() local 506 iface = netdev_priv(dev); in hfa384x_cmd_callback() 507 local = iface->local; in hfa384x_cmd_callback() 658 struct hostap_interface *iface; in prism2_cmd_ev() local [all …]
|
D | hostap_80211_rx.c | 65 struct hostap_interface *iface; in prism2_rx_80211() local 72 iface = netdev_priv(dev); in prism2_rx_80211() 73 local = iface->local; in prism2_rx_80211() 536 struct hostap_interface *iface = NULL; in prism2_rx_get_wds() local 541 iface = list_entry(ptr, struct hostap_interface, list); in prism2_rx_get_wds() 542 if (iface->type == HOSTAP_INTERFACE_WDS && in prism2_rx_get_wds() 543 memcmp(iface->u.wds.remote_addr, addr, ETH_ALEN) == 0) in prism2_rx_get_wds() 545 iface = NULL; in prism2_rx_get_wds() 549 return iface ? iface->dev : NULL; in prism2_rx_get_wds() 720 struct hostap_interface *iface; in hostap_80211_rx() local [all …]
|
D | hostap_proc.c | 113 struct hostap_interface *iface; in prism2_wds_proc_show() local 115 iface = list_entry(ptr, struct hostap_interface, list); in prism2_wds_proc_show() 116 if (iface->type == HOSTAP_INTERFACE_WDS) in prism2_wds_proc_show() 118 iface->dev->name, iface->u.wds.remote_addr); in prism2_wds_proc_show()
|
D | hostap_wlan.h | 932 struct hostap_interface *iface; member 980 struct hostap_interface *iface = netdev_priv(dev); in prism2_io_debug_add() local 981 local_info_t *local = iface->local; in prism2_io_debug_add() 998 struct hostap_interface *iface = netdev_priv(dev); in prism2_io_debug_error() local 999 local_info_t *local = iface->local; in prism2_io_debug_error()
|
D | hostap_ap.c | 973 struct hostap_interface *iface; in prism2_send_mgmt() local 981 iface = netdev_priv(dev); in prism2_send_mgmt() 982 local = iface->local; in prism2_send_mgmt() 984 iface = netdev_priv(dev); in prism2_send_mgmt() 1030 meta->iface = iface; in prism2_send_mgmt() 2323 struct hostap_interface *iface; in hostap_rx() local 2327 iface = netdev_priv(dev); in hostap_rx() 2328 local = iface->local; in hostap_rx() 2432 struct hostap_interface *iface; in prism2_ap_translate_scan() local 2443 iface = netdev_priv(dev); in prism2_ap_translate_scan() [all …]
|
/linux-4.1.27/drivers/net/wimax/i2400m/ |
D | usb.c | 460 int i2400mu_probe(struct usb_interface *iface, in i2400mu_probe() argument 465 struct device *dev = &iface->dev; in i2400mu_probe() 468 struct usb_device *usb_dev = interface_to_usbdev(iface); in i2400mu_probe() 487 i2400mu->usb_iface = iface; in i2400mu_probe() 488 usb_set_intfdata(iface, i2400mu); in i2400mu_probe() 537 iface->needs_remote_wakeup = 1; /* autosuspend (15s delay) */ in i2400mu_probe() 558 usb_set_intfdata(iface, NULL); in i2400mu_probe() 574 void i2400mu_disconnect(struct usb_interface *iface) in i2400mu_disconnect() argument 576 struct i2400mu *i2400mu = usb_get_intfdata(iface); in i2400mu_disconnect() 579 struct device *dev = &iface->dev; in i2400mu_disconnect() [all …]
|
D | i2400m.h | 917 struct usb_endpoint_descriptor *usb_get_epd(struct usb_interface *iface, int ep) in usb_get_epd() argument 919 return &iface->cur_altsetting->endpoint[ep].desc; in usb_get_epd()
|
/linux-4.1.27/drivers/usb/wusbcore/ |
D | cbaf.c | 317 struct usb_interface *iface = to_usb_interface(dev); in cbaf_wusb_chid_show() local 318 struct cbaf *cbaf = usb_get_intfdata(iface); in cbaf_wusb_chid_show() 330 struct usb_interface *iface = to_usb_interface(dev); in cbaf_wusb_chid_store() local 331 struct cbaf *cbaf = usb_get_intfdata(iface); in cbaf_wusb_chid_store() 364 struct usb_interface *iface = to_usb_interface(dev); in cbaf_wusb_host_name_show() local 365 struct cbaf *cbaf = usb_get_intfdata(iface); in cbaf_wusb_host_name_show() 375 struct usb_interface *iface = to_usb_interface(dev); in cbaf_wusb_host_name_store() local 376 struct cbaf *cbaf = usb_get_intfdata(iface); in cbaf_wusb_host_name_store() 391 struct usb_interface *iface = to_usb_interface(dev); in cbaf_wusb_host_band_groups_show() local 392 struct cbaf *cbaf = usb_get_intfdata(iface); in cbaf_wusb_host_band_groups_show() [all …]
|
D | wa-hc.c | 36 int wa_create(struct wahc *wa, struct usb_interface *iface, in wa_create() argument 40 struct device *dev = &iface->dev; in wa_create() 47 wa->dti_epd = &iface->cur_altsetting->endpoint[1].desc; in wa_create() 48 wa->dto_epd = &iface->cur_altsetting->endpoint[2].desc; in wa_create() 55 result = wa_nep_create(wa, iface); in wa_create()
|
D | wa-nep.c | 263 int wa_nep_create(struct wahc *wa, struct usb_interface *iface) in wa_nep_create() argument 267 struct usb_device *usb_dev = interface_to_usbdev(iface); in wa_nep_create() 268 struct device *dev = &iface->dev; in wa_nep_create() 271 epd = &iface->cur_altsetting->endpoint[0].desc; in wa_nep_create()
|
/linux-4.1.27/ipc/ |
D | util.c | 122 struct ipc_proc_iface *iface; in ipc_init_proc_interface() local 124 iface = kmalloc(sizeof(*iface), GFP_KERNEL); in ipc_init_proc_interface() 125 if (!iface) in ipc_init_proc_interface() 127 iface->path = path; in ipc_init_proc_interface() 128 iface->header = header; in ipc_init_proc_interface() 129 iface->ids = ids; in ipc_init_proc_interface() 130 iface->show = show; in ipc_init_proc_interface() 136 iface); in ipc_init_proc_interface() 138 kfree(iface); in ipc_init_proc_interface() 740 struct ipc_proc_iface *iface; member [all …]
|
/linux-4.1.27/drivers/usb/misc/ |
D | appledisplay.c | 210 static int appledisplay_probe(struct usb_interface *iface, in appledisplay_probe() argument 215 struct usb_device *udev = interface_to_usbdev(iface); in appledisplay_probe() 224 iface_desc = iface->cur_altsetting; in appledisplay_probe() 234 dev_err(&iface->dev, "Could not find int-in endpoint\n"); in appledisplay_probe() 242 dev_err(&iface->dev, "Out of memory\n"); in appledisplay_probe() 256 dev_err(&iface->dev, in appledisplay_probe() 265 dev_err(&iface->dev, "Allocating URB failed\n"); in appledisplay_probe() 274 dev_err(&iface->dev, "Allocating URB buffer failed\n"); in appledisplay_probe() 285 dev_err(&iface->dev, "Submitting URB failed\n"); in appledisplay_probe() 298 dev_err(&iface->dev, "Backlight registration failed\n"); in appledisplay_probe() [all …]
|
D | usbtest.c | 618 struct usb_interface *iface = dev->intf; in get_altsetting() local 619 struct usb_device *udev = interface_to_usbdev(iface); in get_altsetting() 624 0, iface->altsetting[0].desc.bInterfaceNumber, in get_altsetting() 639 struct usb_interface *iface = dev->intf; in set_altsetting() local 645 udev = interface_to_usbdev(iface); in set_altsetting() 647 iface->altsetting[0].desc.bInterfaceNumber, in set_altsetting() 775 struct usb_interface *iface = dev->intf; in ch9_postconfig() local 776 struct usb_device *udev = interface_to_usbdev(iface); in ch9_postconfig() 782 for (i = 0; i < iface->num_altsetting; i++) { in ch9_postconfig() 785 alt = iface->altsetting[i].desc.bAlternateSetting; in ch9_postconfig() [all …]
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-net-statistics | 1 What: /sys/class/<iface>/statistics/collisions 9 What: /sys/class/<iface>/statistics/multicast 17 What: /sys/class/<iface>/statistics/rx_bytes 26 What: /sys/class/<iface>/statistics/rx_compressed 35 What: /sys/class/<iface>/statistics/rx_crc_errors 44 What: /sys/class/<iface>/statistics/rx_dropped 54 What: /sys/class/<iface>/statistics/rx_fifo_errors 63 What: /sys/class/<iface>/statistics/rx_frame_errors 73 What: /sys/class/<iface>/statistics/rx_length_errors 82 What: /sys/class/<iface>/statistics/rx_missed_errors [all …]
|
D | sysfs-class-net | 1 What: /sys/class/net/<iface>/name_assign_type 12 What: /sys/class/net/<iface>/addr_assign_type 23 What: /sys/class/net/<iface>/addr_len 33 What: /sys/class/net/<iface>/address 42 What: /sys/class/net/<iface>/broadcast 51 What: /sys/class/net/<iface>/carrier 65 What: /sys/class/net/<iface>/dev_id 75 What: /sys/class/net/<iface>/dormant 90 What: /sys/clas/net/<iface>/duplex 103 What: /sys/class/net/<iface>/flags [all …]
|
D | sysfs-class-net-batman-adv | 2 What: /sys/class/net/<iface>/batman-adv/iface_status 6 Indicates the status of <iface> as it is seen by batman. 8 What: /sys/class/net/<iface>/batman-adv/mesh_iface 12 The /sys/class/net/<iface>/batman-adv/mesh_iface file 13 displays the batman mesh interface this <iface>
|
D | sysfs-class-net-queues | 1 What: /sys/class/<iface>/queues/rx-<queue>/rps_cpus 11 What: /sys/class/<iface>/queues/rx-<queue>/rps_flow_cnt 19 What: /sys/class/<iface>/queues/tx-<queue>/tx_timeout 27 What: /sys/class/<iface>/queues/tx-<queue>/tx_maxrate 35 What: /sys/class/<iface>/queues/tx-<queue>/xps_cpus 45 What: /sys/class/<iface>/queues/tx-<queue>/byte_queue_limits/hold_time 54 What: /sys/class/<iface>/queues/tx-<queue>/byte_queue_limits/inflight 62 What: /sys/class/<iface>/queues/tx-<queue>/byte_queue_limits/limit 71 What: /sys/class/<iface>/queues/tx-<queue>/byte_queue_limits/limit_max 80 What: /sys/class/<iface>/queues/tx-<queue>/byte_queue_limits/limit_min
|
D | sysfs-class-net-cdc_ncm | 1 What: /sys/class/net/<iface>/cdc_ncm/min_tx_pkt 22 What: /sys/class/net/<iface>/cdc_ncm/rx_max 38 What: /sys/class/net/<iface>/cdc_ncm/tx_max 50 What: /sys/class/net/<iface>/cdc_ncm/tx_timer_usecs 70 What: /sys/class/net/<iface>/cdc_ncm/bmNtbFormatsSupported 79 What: /sys/class/net/<iface>/cdc_ncm/dwNtbInMaxSize 86 What: /sys/class/net/<iface>/cdc_ncm/wNdpInDivisor 93 What: /sys/class/net/<iface>/cdc_ncm/wNdpInPayloadRemainder 102 What: /sys/class/net/<iface>/cdc_ncm/wNdpInAlignment 110 What: /sys/class/net/<iface>/cdc_ncm/dwNtbOutMaxSize [all …]
|
D | sysfs-class-net-grcan | 2 What: /sys/class/net/<iface>/grcan/enable0 14 What: /sys/class/net/<iface>/grcan/enable1 26 What: /sys/class/net/<iface>/grcan/select
|
D | sysfs-platform-at91 | 1 What: /sys/devices/platform/at91_can/net/<iface>/mb0_id
|
/linux-4.1.27/net/appletalk/ |
D | ddp.c | 209 struct atalk_iface **iface = &atalk_interfaces; in atif_drop_device() local 213 while ((tmp = *iface) != NULL) { in atif_drop_device() 215 *iface = tmp->next; in atif_drop_device() 220 iface = &tmp->next; in atif_drop_device() 228 struct atalk_iface *iface = kzalloc(sizeof(*iface), GFP_KERNEL); in atif_add_device() local 230 if (!iface) in atif_add_device() 234 iface->dev = dev; in atif_add_device() 235 dev->atalk_ptr = iface; in atif_add_device() 236 iface->address = *sa; in atif_add_device() 237 iface->status = 0; in atif_add_device() [all …]
|
D | atalk_proc.c | 64 struct atalk_iface *iface; in atalk_seq_interface_show() local 72 iface = v; in atalk_seq_interface_show() 74 iface->dev->name, ntohs(iface->address.s_net), in atalk_seq_interface_show() 75 iface->address.s_node, ntohs(iface->nets.nr_firstnet), in atalk_seq_interface_show() 76 ntohs(iface->nets.nr_lastnet), iface->status); in atalk_seq_interface_show()
|
D | aarp.c | 445 static void aarp_send_probe_phase1(struct atalk_iface *iface) in aarp_send_probe_phase1() argument 449 const struct net_device_ops *ops = iface->dev->netdev_ops; in aarp_send_probe_phase1() 451 sa->sat_addr.s_node = iface->address.s_node; in aarp_send_probe_phase1() 452 sa->sat_addr.s_net = ntohs(iface->address.s_net); in aarp_send_probe_phase1() 455 if (!(ops->ndo_do_ioctl(iface->dev, &atreq, SIOCSIFADDR))) { in aarp_send_probe_phase1() 456 ops->ndo_do_ioctl(iface->dev, &atreq, SIOCGIFADDR); in aarp_send_probe_phase1() 457 if (iface->address.s_net != htons(sa->sat_addr.s_net) || in aarp_send_probe_phase1() 458 iface->address.s_node != sa->sat_addr.s_node) in aarp_send_probe_phase1() 459 iface->status |= ATIF_PROBE_FAIL; in aarp_send_probe_phase1() 461 iface->address.s_net = htons(sa->sat_addr.s_net); in aarp_send_probe_phase1() [all …]
|
/linux-4.1.27/sound/soc/codecs/ |
D | wm8711.c | 164 u16 iface = snd_soc_read(codec, WM8711_IFACE) & 0xfff3; in wm8711_hw_params() local 176 iface |= 0x0004; in wm8711_hw_params() 179 iface |= 0x0008; in wm8711_hw_params() 183 snd_soc_write(codec, WM8711_IFACE, iface); in wm8711_hw_params() 245 u16 iface = snd_soc_read(codec, WM8711_IFACE) & 0x000c; in wm8711_set_dai_fmt() local 250 iface |= 0x0040; in wm8711_set_dai_fmt() 261 iface |= 0x0002; in wm8711_set_dai_fmt() 266 iface |= 0x0001; in wm8711_set_dai_fmt() 269 iface |= 0x0003; in wm8711_set_dai_fmt() 272 iface |= 0x0013; in wm8711_set_dai_fmt() [all …]
|
D | uda1380.c | 419 int iface; in uda1380_set_dai_fmt_both() local 422 iface = uda1380_read_reg_cache(codec, UDA1380_IFACE); in uda1380_set_dai_fmt_both() 423 iface &= ~(R01_SFORI_MASK | R01_SIM | R01_SFORO_MASK); in uda1380_set_dai_fmt_both() 427 iface |= R01_SFORI_I2S | R01_SFORO_I2S; in uda1380_set_dai_fmt_both() 430 iface |= R01_SFORI_LSB16 | R01_SFORO_LSB16; in uda1380_set_dai_fmt_both() 433 iface |= R01_SFORI_MSB | R01_SFORO_MSB; in uda1380_set_dai_fmt_both() 440 uda1380_write_reg_cache(codec, UDA1380_IFACE, iface); in uda1380_set_dai_fmt_both() 449 int iface; in uda1380_set_dai_fmt_playback() local 452 iface = uda1380_read_reg_cache(codec, UDA1380_IFACE); in uda1380_set_dai_fmt_playback() 453 iface &= ~R01_SFORI_MASK; in uda1380_set_dai_fmt_playback() [all …]
|
D | ssm2602.c | 280 unsigned int iface; in ssm2602_hw_params() local 290 iface = 0x0; in ssm2602_hw_params() 293 iface = 0x4; in ssm2602_hw_params() 296 iface = 0x8; in ssm2602_hw_params() 299 iface = 0xc; in ssm2602_hw_params() 305 IFACE_AUDIO_DATA_LEN, iface); in ssm2602_hw_params() 394 unsigned int iface = 0; in ssm2602_set_dai_fmt() local 399 iface |= 0x0040; in ssm2602_set_dai_fmt() 410 iface |= 0x0002; in ssm2602_set_dai_fmt() 415 iface |= 0x0001; in ssm2602_set_dai_fmt() [all …]
|
D | wm8776.c | 170 int reg, iface, master; in wm8776_set_fmt() local 185 iface = 0; in wm8776_set_fmt() 199 iface |= 0x0002; in wm8776_set_fmt() 204 iface |= 0x0001; in wm8776_set_fmt() 214 iface |= 0x00c; in wm8776_set_fmt() 217 iface |= 0x008; in wm8776_set_fmt() 220 iface |= 0x004; in wm8776_set_fmt() 227 snd_soc_update_bits(codec, reg, 0xf, iface); in wm8776_set_fmt() 248 int iface_reg, iface; in wm8776_hw_params() local 270 iface = 0; in wm8776_hw_params() [all …]
|
D | wm8971.c | 455 u16 iface = 0; in wm8971_set_dai_fmt() local 460 iface = 0x0040; in wm8971_set_dai_fmt() 471 iface |= 0x0002; in wm8971_set_dai_fmt() 476 iface |= 0x0001; in wm8971_set_dai_fmt() 479 iface |= 0x0003; in wm8971_set_dai_fmt() 482 iface |= 0x0013; in wm8971_set_dai_fmt() 493 iface |= 0x0090; in wm8971_set_dai_fmt() 496 iface |= 0x0080; in wm8971_set_dai_fmt() 499 iface |= 0x0010; in wm8971_set_dai_fmt() 505 snd_soc_write(codec, WM8971_IFACE, iface); in wm8971_set_dai_fmt() [all …]
|
D | wm8728.c | 119 u16 iface = snd_soc_read(codec, WM8728_IFCTL); in wm8728_set_dai_fmt() local 126 iface |= 1; in wm8728_set_dai_fmt() 142 iface &= ~0x22; in wm8728_set_dai_fmt() 145 iface |= 0x20; in wm8728_set_dai_fmt() 146 iface &= ~0x02; in wm8728_set_dai_fmt() 149 iface |= 0x02; in wm8728_set_dai_fmt() 150 iface &= ~0x20; in wm8728_set_dai_fmt() 153 iface |= 0x22; in wm8728_set_dai_fmt() 159 snd_soc_write(codec, WM8728_IFCTL, iface); in wm8728_set_dai_fmt()
|
D | wm8750.c | 524 u16 iface = 0; in wm8750_set_dai_fmt() local 529 iface = 0x0040; in wm8750_set_dai_fmt() 540 iface |= 0x0002; in wm8750_set_dai_fmt() 545 iface |= 0x0001; in wm8750_set_dai_fmt() 548 iface |= 0x0003; in wm8750_set_dai_fmt() 551 iface |= 0x0013; in wm8750_set_dai_fmt() 562 iface |= 0x0090; in wm8750_set_dai_fmt() 565 iface |= 0x0080; in wm8750_set_dai_fmt() 568 iface |= 0x0010; in wm8750_set_dai_fmt() 574 snd_soc_write(codec, WM8750_IFACE, iface); in wm8750_set_dai_fmt() [all …]
|
D | wm8741.c | 226 u16 iface = snd_soc_read(codec, WM8741_FORMAT_CONTROL) & 0x1FC; in wm8741_hw_params() local 248 iface |= 0x0001; in wm8741_hw_params() 251 iface |= 0x0002; in wm8741_hw_params() 254 iface |= 0x0003; in wm8741_hw_params() 265 snd_soc_write(codec, WM8741_FORMAT_CONTROL, iface); in wm8741_hw_params() 326 u16 iface = snd_soc_read(codec, WM8741_FORMAT_CONTROL) & 0x1C3; in wm8741_set_dai_fmt() local 339 iface |= 0x0008; in wm8741_set_dai_fmt() 344 iface |= 0x0004; in wm8741_set_dai_fmt() 347 iface |= 0x000C; in wm8741_set_dai_fmt() 350 iface |= 0x001C; in wm8741_set_dai_fmt() [all …]
|
D | wm8940.c | 343 u16 iface = snd_soc_read(codec, WM8940_IFACE) & 0xFE67; in wm8940_set_dai_fmt() local 359 iface |= (2 << 3); in wm8940_set_dai_fmt() 362 iface |= (1 << 3); in wm8940_set_dai_fmt() 367 iface |= (3 << 3); in wm8940_set_dai_fmt() 370 iface |= (3 << 3) | (1 << 7); in wm8940_set_dai_fmt() 378 iface |= (1 << 7); in wm8940_set_dai_fmt() 381 iface |= (1 << 8); in wm8940_set_dai_fmt() 384 iface |= (1 << 8) | (1 << 7); in wm8940_set_dai_fmt() 388 snd_soc_write(codec, WM8940_IFACE, iface); in wm8940_set_dai_fmt() 398 u16 iface = snd_soc_read(codec, WM8940_IFACE) & 0xFD9F; in wm8940_i2s_hw_params() local [all …]
|
D | wm8770.c | 350 int iface, master; in wm8770_set_fmt() local 365 iface = 0; in wm8770_set_fmt() 368 iface |= 0x2; in wm8770_set_fmt() 373 iface |= 0x1; in wm8770_set_fmt() 383 iface |= 0xc; in wm8770_set_fmt() 386 iface |= 0x8; in wm8770_set_fmt() 389 iface |= 0x4; in wm8770_set_fmt() 395 snd_soc_update_bits(codec, WM8770_IFACECTRL, 0xf, iface); in wm8770_set_fmt() 417 int iface; in wm8770_hw_params() local 424 iface = 0; in wm8770_hw_params() [all …]
|
D | wm8974.c | 386 u16 iface = 0; in wm8974_set_dai_fmt() local 403 iface |= 0x0010; in wm8974_set_dai_fmt() 408 iface |= 0x0008; in wm8974_set_dai_fmt() 411 iface |= 0x00018; in wm8974_set_dai_fmt() 422 iface |= 0x0180; in wm8974_set_dai_fmt() 425 iface |= 0x0100; in wm8974_set_dai_fmt() 428 iface |= 0x0080; in wm8974_set_dai_fmt() 434 snd_soc_write(codec, WM8974_IFACE, iface); in wm8974_set_dai_fmt() 444 u16 iface = snd_soc_read(codec, WM8974_IFACE) & 0x19f; in wm8974_pcm_hw_params() local 452 iface |= 0x0020; in wm8974_pcm_hw_params() [all …]
|
D | alc5623.c | 648 u16 iface = 0; in alc5623_set_dai_fmt() local 653 iface = ALC5623_DAI_SDP_MASTER_MODE; in alc5623_set_dai_fmt() 656 iface = ALC5623_DAI_SDP_SLAVE_MODE; in alc5623_set_dai_fmt() 665 iface |= ALC5623_DAI_I2S_DF_I2S; in alc5623_set_dai_fmt() 668 iface |= ALC5623_DAI_I2S_DF_RIGHT; in alc5623_set_dai_fmt() 671 iface |= ALC5623_DAI_I2S_DF_LEFT; in alc5623_set_dai_fmt() 674 iface |= ALC5623_DAI_I2S_DF_PCM; in alc5623_set_dai_fmt() 677 iface |= ALC5623_DAI_I2S_DF_PCM | ALC5623_DAI_I2S_PCM_MODE; in alc5623_set_dai_fmt() 688 iface |= ALC5623_DAI_MAIN_I2S_BCLK_POL_CTRL; in alc5623_set_dai_fmt() 691 iface |= ALC5623_DAI_MAIN_I2S_BCLK_POL_CTRL; in alc5623_set_dai_fmt() [all …]
|
D | alc5632.c | 820 u16 iface = 0; in alc5632_set_dai_fmt() local 825 iface = ALC5632_DAI_SDP_MASTER_MODE; in alc5632_set_dai_fmt() 828 iface = ALC5632_DAI_SDP_SLAVE_MODE; in alc5632_set_dai_fmt() 837 iface |= ALC5632_DAI_I2S_DF_I2S; in alc5632_set_dai_fmt() 840 iface |= ALC5632_DAI_I2S_DF_LEFT; in alc5632_set_dai_fmt() 843 iface |= ALC5632_DAI_I2S_DF_PCM_A; in alc5632_set_dai_fmt() 846 iface |= ALC5632_DAI_I2S_DF_PCM_B; in alc5632_set_dai_fmt() 857 iface |= ALC5632_DAI_MAIN_I2S_BCLK_POL_CTRL; in alc5632_set_dai_fmt() 860 iface |= ALC5632_DAI_MAIN_I2S_BCLK_POL_CTRL; in alc5632_set_dai_fmt() 868 return snd_soc_write(codec, ALC5632_DAI_CONTROL, iface); in alc5632_set_dai_fmt() [all …]
|
D | wm8988.c | 591 u16 iface = 0; in wm8988_set_dai_fmt() local 596 iface = 0x0040; in wm8988_set_dai_fmt() 607 iface |= 0x0002; in wm8988_set_dai_fmt() 612 iface |= 0x0001; in wm8988_set_dai_fmt() 615 iface |= 0x0003; in wm8988_set_dai_fmt() 618 iface |= 0x0013; in wm8988_set_dai_fmt() 629 iface |= 0x0090; in wm8988_set_dai_fmt() 632 iface |= 0x0080; in wm8988_set_dai_fmt() 635 iface |= 0x0010; in wm8988_set_dai_fmt() 641 snd_soc_write(codec, WM8988_IFACE, iface); in wm8988_set_dai_fmt() [all …]
|
D | wm8510.c | 390 u16 iface = 0; in wm8510_set_dai_fmt() local 407 iface |= 0x0010; in wm8510_set_dai_fmt() 412 iface |= 0x0008; in wm8510_set_dai_fmt() 415 iface |= 0x00018; in wm8510_set_dai_fmt() 426 iface |= 0x0180; in wm8510_set_dai_fmt() 429 iface |= 0x0100; in wm8510_set_dai_fmt() 432 iface |= 0x0080; in wm8510_set_dai_fmt() 438 snd_soc_write(codec, WM8510_IFACE, iface); in wm8510_set_dai_fmt() 448 u16 iface = snd_soc_read(codec, WM8510_IFACE) & 0x19f; in wm8510_pcm_hw_params() local 456 iface |= 0x0020; in wm8510_pcm_hw_params() [all …]
|
D | wm8731.c | 347 u16 iface = snd_soc_read(codec, WM8731_IFACE) & 0xfff3; in wm8731_hw_params() local 361 iface |= 0x0004; in wm8731_hw_params() 364 iface |= 0x0008; in wm8731_hw_params() 370 snd_soc_write(codec, WM8731_IFACE, iface); in wm8731_hw_params() 434 u16 iface = 0; in wm8731_set_dai_fmt() local 439 iface |= 0x0040; in wm8731_set_dai_fmt() 450 iface |= 0x0002; in wm8731_set_dai_fmt() 455 iface |= 0x0001; in wm8731_set_dai_fmt() 458 iface |= 0x0013; in wm8731_set_dai_fmt() 461 iface |= 0x0003; in wm8731_set_dai_fmt() [all …]
|
D | wm8960.c | 496 u16 iface = 0; in wm8960_set_dai_fmt() local 501 iface |= 0x0040; in wm8960_set_dai_fmt() 512 iface |= 0x0002; in wm8960_set_dai_fmt() 517 iface |= 0x0001; in wm8960_set_dai_fmt() 520 iface |= 0x0003; in wm8960_set_dai_fmt() 523 iface |= 0x0013; in wm8960_set_dai_fmt() 534 iface |= 0x0090; in wm8960_set_dai_fmt() 537 iface |= 0x0080; in wm8960_set_dai_fmt() 540 iface |= 0x0010; in wm8960_set_dai_fmt() 547 snd_soc_write(codec, WM8960_IFACE1, iface); in wm8960_set_dai_fmt() [all …]
|
D | wm8978.c | 659 u16 iface = snd_soc_read(codec, WM8978_AUDIO_INTERFACE) & ~0x198; in wm8978_set_dai_fmt() local 679 iface |= 0x10; in wm8978_set_dai_fmt() 684 iface |= 0x8; in wm8978_set_dai_fmt() 687 iface |= 0x18; in wm8978_set_dai_fmt() 698 iface |= 0x180; in wm8978_set_dai_fmt() 701 iface |= 0x100; in wm8978_set_dai_fmt() 704 iface |= 0x80; in wm8978_set_dai_fmt() 710 snd_soc_write(codec, WM8978_AUDIO_INTERFACE, iface); in wm8978_set_dai_fmt()
|
D | wm8350.c | 841 u16 iface = snd_soc_read(codec, WM8350_AI_FORMATING) & in wm8350_set_dai_fmt() local 866 iface |= 0x2 << 8; in wm8350_set_dai_fmt() 871 iface |= 0x1 << 8; in wm8350_set_dai_fmt() 874 iface |= 0x3 << 8; in wm8350_set_dai_fmt() 877 iface |= 0x3 << 8 | WM8350_AIF_LRCLK_INV; in wm8350_set_dai_fmt() 888 iface |= WM8350_AIF_LRCLK_INV | WM8350_AIF_BCLK_INV; in wm8350_set_dai_fmt() 891 iface |= WM8350_AIF_BCLK_INV; in wm8350_set_dai_fmt() 894 iface |= WM8350_AIF_LRCLK_INV; in wm8350_set_dai_fmt() 900 snd_soc_write(codec, WM8350_AI_FORMATING, iface); in wm8350_set_dai_fmt() 914 u16 iface = snd_soc_read(codec, WM8350_AI_FORMATING) & in wm8350_pcm_hw_params() local [all …]
|
D | rt5631.c | 1359 unsigned int iface = 0; in rt5631_hifi_pcm_params() local 1385 iface |= RT5631_SDP_I2S_DL_20; in rt5631_hifi_pcm_params() 1388 iface |= RT5631_SDP_I2S_DL_24; in rt5631_hifi_pcm_params() 1391 iface |= RT5631_SDP_I2S_DL_8; in rt5631_hifi_pcm_params() 1398 RT5631_SDP_I2S_DL_MASK, iface); in rt5631_hifi_pcm_params() 1410 unsigned int iface = 0; in rt5631_hifi_codec_set_dai_fmt() local 1419 iface |= RT5631_SDP_MODE_SEL_SLAVE; in rt5631_hifi_codec_set_dai_fmt() 1430 iface |= RT5631_SDP_I2S_DF_LEFT; in rt5631_hifi_codec_set_dai_fmt() 1433 iface |= RT5631_SDP_I2S_DF_PCM_A; in rt5631_hifi_codec_set_dai_fmt() 1436 iface |= RT5631_SDP_I2S_DF_PCM_B; in rt5631_hifi_codec_set_dai_fmt() [all …]
|
D | cs4265.c | 364 u8 iface = 0; in cs4265_set_fmt() local 384 iface |= SND_SOC_DAIFMT_I2S; in cs4265_set_fmt() 387 iface |= SND_SOC_DAIFMT_RIGHT_J; in cs4265_set_fmt() 390 iface |= SND_SOC_DAIFMT_LEFT_J; in cs4265_set_fmt() 396 cs4265->format = iface; in cs4265_set_fmt()
|
D | cs42l52.c | 787 u8 iface = 0; in cs42l52_set_fmt() local 791 iface = CS42L52_IFACE_CTL1_MASTER; in cs42l52_set_fmt() 794 iface = CS42L52_IFACE_CTL1_SLAVE; in cs42l52_set_fmt() 803 iface |= CS42L52_IFACE_CTL1_ADC_FMT_I2S | in cs42l52_set_fmt() 807 iface |= CS42L52_IFACE_CTL1_DAC_FMT_RIGHT_J; in cs42l52_set_fmt() 810 iface |= CS42L52_IFACE_CTL1_ADC_FMT_LEFT_J | in cs42l52_set_fmt() 814 iface |= CS42L52_IFACE_CTL1_DSP_MODE_EN; in cs42l52_set_fmt() 827 iface |= CS42L52_IFACE_CTL1_INV_SCLK; in cs42l52_set_fmt() 830 iface |= CS42L52_IFACE_CTL1_INV_SCLK; in cs42l52_set_fmt() 837 cs42l52->config.format = iface; in cs42l52_set_fmt()
|
/linux-4.1.27/drivers/uwb/i1480/dfu/ |
D | usb.c | 63 int i1480_usb_create(struct i1480_usb *i1480_usb, struct usb_interface *iface) in i1480_usb_create() argument 65 struct usb_device *usb_dev = interface_to_usbdev(iface); in i1480_usb_create() 69 i1480_usb->usb_iface = usb_get_intf(iface); in i1480_usb_create() 70 usb_set_intfdata(iface, i1480_usb); /* Bind the driver to iface0 */ in i1480_usb_create() 77 usb_set_intfdata(iface, NULL); in i1480_usb_create() 78 usb_put_intf(iface); in i1480_usb_create() 342 int i1480_usb_probe(struct usb_interface *iface, const struct usb_device_id *id) in i1480_usb_probe() argument 346 struct device *dev = &iface->dev; in i1480_usb_probe() 350 if (iface->cur_altsetting->desc.bInterfaceNumber != 0) { in i1480_usb_probe() 352 iface->cur_altsetting->desc.bInterfaceNumber); in i1480_usb_probe() [all …]
|
/linux-4.1.27/drivers/net/ethernet/stmicro/stmmac/ |
D | dwmac-sti.c | 32 #define IS_PHY_IF_MODE_RGMII(iface) (iface == PHY_INTERFACE_MODE_RGMII || \ argument 33 iface == PHY_INTERFACE_MODE_RGMII_ID || \ 34 iface == PHY_INTERFACE_MODE_RGMII_RXID || \ 35 iface == PHY_INTERFACE_MODE_RGMII_TXID) 37 #define IS_PHY_IF_MODE_GBIT(iface) (IS_PHY_IF_MODE_RGMII(iface) || \ argument 38 iface == PHY_INTERFACE_MODE_GMII) 227 int iface = dwmac->interface; in sti_dwmac_ctrl_init() local 239 regmap_update_bits(regmap, reg, MII_PHY_SEL_MASK, phy_intf_sels[iface]); in sti_dwmac_ctrl_init() 241 val = (iface == PHY_INTERFACE_MODE_REVMII) ? 0 : ENMII; in sti_dwmac_ctrl_init()
|
/linux-4.1.27/drivers/net/can/c_can/ |
D | c_can.c | 49 #define C_CAN_IFACE(reg, iface) (C_CAN_IF1_##reg + (iface) * IF_ENUM_REG_LEN) argument 251 static void c_can_obj_update(struct net_device *dev, int iface, u32 cmd, u32 obj) in c_can_obj_update() argument 254 int cnt, reg = C_CAN_IFACE(COMREQ_REG, iface); in c_can_obj_update() 267 static inline void c_can_object_get(struct net_device *dev, int iface, in c_can_object_get() argument 270 c_can_obj_update(dev, iface, cmd, obj); in c_can_object_get() 273 static inline void c_can_object_put(struct net_device *dev, int iface, in c_can_object_put() argument 276 c_can_obj_update(dev, iface, cmd | IF_COMM_WR, obj); in c_can_object_put() 284 static void c_can_inval_tx_object(struct net_device *dev, int iface, int obj) in c_can_inval_tx_object() argument 288 priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), 0); in c_can_inval_tx_object() 289 c_can_object_put(dev, iface, obj, IF_COMM_INVAL); in c_can_inval_tx_object() [all …]
|
/linux-4.1.27/sound/pci/ice1712/ |
D | aureon.c | 1408 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1415 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1425 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1433 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1444 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1452 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1463 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1471 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1482 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1490 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, [all …]
|
D | phase.c | 764 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 771 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 781 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 789 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 800 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 808 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 819 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 827 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 838 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 846 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, [all …]
|
D | maya44.c | 444 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 456 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 468 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 480 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 490 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 500 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 507 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 515 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 522 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
D | prodigy_hifi.c | 303 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 779 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 789 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 799 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 810 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 821 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 832 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 843 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 853 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 861 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, [all …]
|
D | prodigy192.c | 365 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 374 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 385 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 393 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 404 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 413 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 424 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 597 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
D | pontis.c | 548 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 558 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 568 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 576 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 584 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 591 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 598 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 606 .iface = SNDRV_CTL_ELEM_IFACE_CARD, 613 .iface = SNDRV_CTL_ELEM_IFACE_CARD, 620 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
|
D | wtm.c | 496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 507 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 515 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 524 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 532 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 544 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 552 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
D | juli.c | 362 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 389 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 397 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 405 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 432 sid.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in ctl_find()
|
D | ice1712.c | 283 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1382 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1391 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1405 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1414 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1424 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1436 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1634 .iface = SNDRV_CTL_ELEM_IFACE_CARD, 1671 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 1723 .iface = SNDRV_CTL_ELEM_IFACE_PCM, [all …]
|
D | ews.c | 616 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 624 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 723 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 732 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 800 { .iface = xiface,\ 932 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\ 942 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/drivers/usb/storage/ |
D | usb.h | 185 extern int usb_stor_suspend(struct usb_interface *iface, pm_message_t message); 186 extern int usb_stor_resume(struct usb_interface *iface); 187 extern int usb_stor_reset_resume(struct usb_interface *iface); 194 extern int usb_stor_pre_reset(struct usb_interface *iface); 195 extern int usb_stor_post_reset(struct usb_interface *iface);
|
D | usb.c | 182 int usb_stor_suspend(struct usb_interface *iface, pm_message_t message) in usb_stor_suspend() argument 184 struct us_data *us = usb_get_intfdata(iface); in usb_stor_suspend() 200 int usb_stor_resume(struct usb_interface *iface) in usb_stor_resume() argument 202 struct us_data *us = usb_get_intfdata(iface); in usb_stor_resume() 214 int usb_stor_reset_resume(struct usb_interface *iface) in usb_stor_reset_resume() argument 216 struct us_data *us = usb_get_intfdata(iface); in usb_stor_reset_resume() 234 int usb_stor_pre_reset(struct usb_interface *iface) in usb_stor_pre_reset() argument 236 struct us_data *us = usb_get_intfdata(iface); in usb_stor_pre_reset() 244 int usb_stor_post_reset(struct usb_interface *iface) in usb_stor_post_reset() argument 246 struct us_data *us = usb_get_intfdata(iface); in usb_stor_post_reset()
|
/linux-4.1.27/include/linux/ |
D | of_mdio.h | 21 u32 flags, phy_interface_t iface); 24 phy_interface_t iface); 48 u32 flags, phy_interface_t iface) in of_phy_connect() argument 55 u32 flags, phy_interface_t iface) in of_phy_attach() argument
|
D | usb.h | 642 const struct usb_interface *iface); 741 struct usb_interface *iface, void *priv); 756 static inline int usb_interface_claimed(struct usb_interface *iface) in usb_interface_claimed() argument 758 return (iface->dev.driver != NULL); in usb_interface_claimed() 762 struct usb_interface *iface);
|
/linux-4.1.27/drivers/staging/lustre/lnet/klnds/socklnd/ |
D | socklnd.c | 54 ksock_interface_t *iface; in ksocknal_ip2iface() local 58 iface = &net->ksnn_interfaces[i]; in ksocknal_ip2iface() 60 if (iface->ksni_ipaddr == ip) in ksocknal_ip2iface() 61 return iface; in ksocknal_ip2iface() 222 ksock_interface_t *iface; in ksocknal_unlink_peer_locked() local 228 iface = ksocknal_ip2iface(peer->ksnp_ni, ip); in ksocknal_unlink_peer_locked() 231 LASSERT(iface != NULL); in ksocknal_unlink_peer_locked() 234 peer, iface, iface->ksni_nroutes); in ksocknal_unlink_peer_locked() 235 iface->ksni_npeers--; in ksocknal_unlink_peer_locked() 327 ksock_interface_t *iface; in ksocknal_associate_route_conn_locked() local [all …]
|
/linux-4.1.27/drivers/media/platform/omap3isp/ |
D | ispcsiphy.c | 27 enum isp_interface_type iface, in csiphy_routing_cfg_3630() argument 35 switch (iface) { in csiphy_routing_cfg_3630() 57 if (iface == ISP_INTERFACE_CCP2B_PHY1 || in csiphy_routing_cfg_3630() 58 iface == ISP_INTERFACE_CCP2B_PHY2) { in csiphy_routing_cfg_3630() 71 static void csiphy_routing_cfg_3430(struct isp_csiphy *phy, u32 iface, bool on, in csiphy_routing_cfg_3430() argument 78 if (iface != ISP_INTERFACE_CCP2B_PHY1) in csiphy_routing_cfg_3430() 105 enum isp_interface_type iface, bool on, in csiphy_routing_cfg() argument 109 return csiphy_routing_cfg_3630(phy, iface, ccp2_strobe); in csiphy_routing_cfg() 111 return csiphy_routing_cfg_3430(phy, iface, on, ccp2_strobe); in csiphy_routing_cfg()
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | qcom-ipq8064.dtsi | 154 clock-names = "iface"; 168 clock-names = "core", "iface"; 178 clock-names = "core", "iface"; 192 clock-names = "iface"; 206 clock-names = "core", "iface"; 216 clock-names = "core", "iface"; 229 clock-names = "iface"; 243 clock-names = "core", "iface"; 253 clock-names = "core", "iface"; 266 clock-names = "core", "iface"; [all …]
|
D | qcom-apq8064.dtsi | 186 clock-names = "iface"; 198 clock-names = "core", "iface"; 210 clock-names = "iface"; 222 clock-names = "core", "iface"; 234 clock-names = "iface"; 247 clock-names = "core", "iface";
|
D | qcom-msm8974.dtsi | 235 clock-names = "core", "iface"; 246 clock-names = "core", "iface"; 257 clock-names = "core", "iface"; 284 clock-names = "core", "iface";
|
D | atlas7.dtsi | 360 clock-names = "core", "iface"; 373 clock-names = "core", "iface"; 462 clock-names = "core", "iface"; 483 clock-names = "core", "iface"; 494 clock-names = "core", "iface"; 506 clock-names = "core", "iface"; 517 clock-names = "core", "iface";
|
D | qcom-apq8084.dtsi | 242 clock-names = "core", "iface"; 253 clock-names = "core", "iface"; 264 clock-names = "core", "iface";
|
D | qcom-msm8660.dtsi | 88 clock-names = "iface"; 101 clock-names = "core", "iface";
|
/linux-4.1.27/sound/pci/oxygen/ |
D | oxygen_mixer.c | 742 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 751 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 768 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 776 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 783 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 793 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 800 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 808 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 816 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 829 .iface = SNDRV_CTL_ELEM_IFACE_PCM, [all …]
|
D | xonar_dg_mixer.c | 368 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 382 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 389 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 399 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 411 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 418 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
D | xonar_wm87x6.c | 980 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 988 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 1023 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1033 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1041 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1049 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1061 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1068 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1078 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1086 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, [all …]
|
D | xonar_pcm179x.c | 717 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 773 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 781 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 898 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 905 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 959 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 966 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/drivers/input/mouse/ |
D | appletouch.c | 842 static int atp_probe(struct usb_interface *iface, in atp_probe() argument 847 struct usb_device *udev = interface_to_usbdev(iface); in atp_probe() 856 iface_desc = iface->cur_altsetting; in atp_probe() 866 dev_err(&iface->dev, "Could not find int-in endpoint\n"); in atp_probe() 874 dev_err(&iface->dev, "Out of memory\n"); in atp_probe() 879 dev->intf = iface; in atp_probe() 908 input_dev->dev.parent = &iface->dev; in atp_probe() 937 usb_set_intfdata(iface, dev); in atp_probe() 949 usb_set_intfdata(iface, NULL); in atp_probe() 955 static void atp_disconnect(struct usb_interface *iface) in atp_disconnect() argument [all …]
|
D | bcm5974.c | 820 static int bcm5974_suspend(struct usb_interface *iface, pm_message_t message) in bcm5974_suspend() argument 822 struct bcm5974 *dev = usb_get_intfdata(iface); in bcm5974_suspend() 834 static int bcm5974_resume(struct usb_interface *iface) in bcm5974_resume() argument 836 struct bcm5974 *dev = usb_get_intfdata(iface); in bcm5974_resume() 849 static int bcm5974_probe(struct usb_interface *iface, in bcm5974_probe() argument 852 struct usb_device *udev = interface_to_usbdev(iface); in bcm5974_probe() 865 dev_err(&iface->dev, "out of memory\n"); in bcm5974_probe() 870 dev->intf = iface; in bcm5974_probe() 920 input_dev->dev.parent = &iface->dev; in bcm5974_probe() 934 usb_set_intfdata(iface, dev); in bcm5974_probe() [all …]
|
/linux-4.1.27/drivers/uwb/ |
D | hwa-rc.c | 691 struct usb_interface *iface = hwarc->usb_iface; in hwarc_neep_init() local 692 struct usb_device *usb_dev = interface_to_usbdev(iface); in hwarc_neep_init() 693 struct device *dev = &iface->dev; in hwarc_neep_init() 697 epd = &iface->cur_altsetting->endpoint[0].desc; in hwarc_neep_init() 820 static int hwarc_probe(struct usb_interface *iface, in hwarc_probe() argument 826 struct device *dev = &iface->dev; in hwarc_probe() 840 hwarc->usb_dev = usb_get_dev(interface_to_usbdev(iface)); in hwarc_probe() 841 hwarc->usb_iface = usb_get_intf(iface); in hwarc_probe() 865 usb_set_intfdata(iface, hwarc); in hwarc_probe() 871 usb_put_intf(iface); in hwarc_probe() [all …]
|
/linux-4.1.27/sound/i2c/other/ |
D | ak4117.c | 326 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 334 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 342 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 350 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 358 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 365 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 372 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 379 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 386 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 393 .iface = SNDRV_CTL_ELEM_IFACE_PCM, [all …]
|
D | ak4114.c | 339 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 347 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 355 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 363 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 371 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 378 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 385 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 393 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 400 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 407 .iface = SNDRV_CTL_ELEM_IFACE_PCM, [all …]
|
D | ak4113.c | 370 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 379 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 388 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 397 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 406 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 414 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 421 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 429 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 437 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 445 .iface = SNDRV_CTL_ELEM_IFACE_PCM, [all …]
|
D | pt2258.c | 197 knew.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in snd_pt2258_build_controls() 214 knew.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in snd_pt2258_build_controls()
|
/linux-4.1.27/include/sound/ |
D | soc.h | 63 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 68 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ 76 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 84 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 96 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ 107 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ 113 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ 120 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ 126 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ 135 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ [all …]
|
D | wss.h | 178 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 194 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 204 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 216 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
|
D | soc-dapm.h | 266 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 271 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 278 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 285 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 294 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 300 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 306 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname " Switch", \
|
D | hwdep.h | 60 int iface; member
|
/linux-4.1.27/tools/usb/ffs-aio-example/simple/host_app/ |
D | test.c | 158 struct libusb_interface_descriptor const *iface; in main() local 165 iface = &conf->interface[0].altsetting[0]; in main() 166 in_addr = iface->endpoint[0].bEndpointAddress; in main() 167 out_addr = iface->endpoint[1].bEndpointAddress; in main()
|
/linux-4.1.27/sound/pci/ac97/ |
D | ac97_patch.h | 31 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 36 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 41 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ 61 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
D | ac97_patch.c | 61 sid.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in reset_tlv() 148 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 157 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 167 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 177 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 268 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 334 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 413 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 420 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 986 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, [all …]
|
/linux-4.1.27/sound/usb/usx2y/ |
D | us122l.c | 68 struct usb_interface *iface = usb_ifnum_to_if(dev, 1); in us122l_create_usbmidi() local 70 return snd_usbmidi_create(card, iface, in us122l_create_usbmidi() 90 struct usb_interface *iface = usb_ifnum_to_if(dev, 0); in us144_create_usbmidi() local 92 return snd_usbmidi_create(card, iface, in us144_create_usbmidi() 194 struct usb_interface *iface; in usb_stream_hwdep_open() local 204 iface = usb_ifnum_to_if(us122l->dev, 0); in usb_stream_hwdep_open() 205 usb_autopm_get_interface(iface); in usb_stream_hwdep_open() 207 iface = usb_ifnum_to_if(us122l->dev, 1); in usb_stream_hwdep_open() 208 usb_autopm_get_interface(iface); in usb_stream_hwdep_open() 215 struct usb_interface *iface; in usb_stream_hwdep_release() local [all …]
|
D | usX2Yhwdep.c | 169 struct usb_interface *iface = usb_ifnum_to_if(dev, 0); in usX2Y_create_usbmidi() local 175 return snd_usbmidi_create(card, iface, &usX2Y(card)->midi_list, quirk); in usX2Y_create_usbmidi() 255 hw->iface = SNDRV_HWDEP_IFACE_USX2Y; in usX2Y_hwdep_new()
|
/linux-4.1.27/drivers/crypto/qce/ |
D | core.c | 200 qce->iface = devm_clk_get(qce->dev, "iface"); in qce_crypto_probe() 201 if (IS_ERR(qce->iface)) in qce_crypto_probe() 202 return PTR_ERR(qce->iface); in qce_crypto_probe() 212 ret = clk_prepare_enable(qce->iface); in qce_crypto_probe() 247 clk_disable_unprepare(qce->iface); in qce_crypto_probe() 261 clk_disable_unprepare(qce->iface); in qce_crypto_remove()
|
D | core.h | 45 struct clk *core, *iface, *bus; member
|
/linux-4.1.27/drivers/usb/core/ |
D | message.c | 1291 struct usb_interface *iface; in usb_set_interface() local 1301 iface = usb_ifnum_to_if(dev, interface); in usb_set_interface() 1302 if (!iface) { in usb_set_interface() 1307 if (iface->unregistering) in usb_set_interface() 1310 alt = usb_altnum_to_altsetting(iface, alternate); in usb_set_interface() 1325 dev_err(&iface->dev, "%s Failed to disable LPM\n.", __func__); in usb_set_interface() 1330 for (i = 0; i < iface->cur_altsetting->desc.bNumEndpoints; i++) in usb_set_interface() 1331 iface->cur_altsetting->endpoint[i].streams = 0; in usb_set_interface() 1333 ret = usb_hcd_alloc_bandwidth(dev, NULL, iface->cur_altsetting, alt); in usb_set_interface() 1352 if (ret == -EPIPE && iface->num_altsetting == 1) { in usb_set_interface() [all …]
|
D | devices.c | 251 const struct usb_interface *iface, in usb_dump_interface_descriptor() argument 261 if (iface) { in usb_dump_interface_descriptor() 262 driver_name = (iface->dev.driver in usb_dump_interface_descriptor() 263 ? iface->dev.driver->name in usb_dump_interface_descriptor() 265 active = (desc == &iface->cur_altsetting->desc); in usb_dump_interface_descriptor() 282 const struct usb_interface *iface, int setno) in usb_dump_interface() argument 287 start = usb_dump_interface_descriptor(start, end, intfc, iface, setno); in usb_dump_interface()
|
D | usb.c | 620 const struct usb_interface *iface) in usb_lock_device_for_reset() argument 628 if (iface && (iface->condition == USB_INTERFACE_UNBINDING || in usb_lock_device_for_reset() 629 iface->condition == USB_INTERFACE_UNBOUND)) in usb_lock_device_for_reset() 644 if (iface && (iface->condition == USB_INTERFACE_UNBINDING || in usb_lock_device_for_reset() 645 iface->condition == USB_INTERFACE_UNBOUND)) in usb_lock_device_for_reset()
|
D | driver.c | 504 struct usb_interface *iface, void *priv) in usb_driver_claim_interface() argument 511 if (!iface) in usb_driver_claim_interface() 514 dev = &iface->dev; in usb_driver_claim_interface() 518 udev = interface_to_usbdev(iface); in usb_driver_claim_interface() 521 usb_set_intfdata(iface, priv); in usb_driver_claim_interface() 522 iface->needs_binding = 0; in usb_driver_claim_interface() 524 iface->condition = USB_INTERFACE_BOUND; in usb_driver_claim_interface() 530 dev_err(&iface->dev, "%s Failed to disable LPM for driver %s\n.", in usb_driver_claim_interface() 577 struct usb_interface *iface) in usb_driver_release_interface() argument 579 struct device *dev = &iface->dev; in usb_driver_release_interface() [all …]
|
/linux-4.1.27/drivers/acpi/ |
D | acpi_ipmi.c | 110 static void ipmi_register_bmc(int iface, struct device *dev); 111 static void ipmi_bmc_gone(int iface); 128 ipmi_dev_alloc(int iface, struct device *dev, acpi_handle handle) in ipmi_dev_alloc() argument 144 ipmi_device->ipmi_ifnum = iface; in ipmi_dev_alloc() 146 err = ipmi_create_user(iface, &driver_data.ipmi_hndlrs, in ipmi_dev_alloc() 454 static void ipmi_register_bmc(int iface, struct device *dev) in ipmi_register_bmc() argument 461 err = ipmi_get_smi_info(iface, &smi_data); in ipmi_register_bmc() 471 ipmi_device = ipmi_dev_alloc(iface, smi_data.dev, handle); in ipmi_register_bmc() 502 static void ipmi_bmc_gone(int iface) in ipmi_bmc_gone() argument 510 if (ipmi_device->ipmi_ifnum != iface) { in ipmi_bmc_gone()
|
/linux-4.1.27/drivers/usb/gadget/udc/ |
D | pxa27x_udc.h | 257 #define PXA_EP_DEF(_idx, _addr, dir, _type, maxpkt, _config, iface, altset) \ argument 263 .config = _config, .interface = iface, .alternate = altset, \ 266 #define PXA_EP_BULK(_idx, addr, dir, config, iface, alt) \ argument 268 config, iface, alt) 269 #define PXA_EP_ISO(_idx, addr, dir, config, iface, alt) \ argument 271 config, iface, alt) 272 #define PXA_EP_INT(_idx, addr, dir, config, iface, alt) \ argument 274 config, iface, alt)
|
/linux-4.1.27/sound/pci/cs5535audio/ |
D | cs5535audio_olpc.c | 120 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 128 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 164 elem.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in olpc_quirks() 170 elem.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in olpc_quirks()
|
/linux-4.1.27/Documentation/scsi/ |
D | cxgb3i.txt | 62 iface.transport_name = cxgb3i 63 iface.net_ifacename = <ethX> 64 iface.ipaddress = <iscsi ip address> 66 * if iface.ipaddress is specified, <iscsi ip address> needs to be either the 82 "-I <iface file name>" option needs to be specified with most of the 83 iscsiadm command. <iface file name> is the transport interface file created
|
/linux-4.1.27/sound/usb/6fire/ |
D | control.c | 406 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 418 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 430 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 446 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 456 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 466 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 480 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 489 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 498 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 507 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/sound/pci/ca0106/ |
D | ca0106_mixer.c | 306 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 315 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 557 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 591 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 598 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 605 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 612 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 619 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 627 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 638 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ [all …]
|
/linux-4.1.27/drivers/scsi/ |
D | scsi_transport_iscsi.c | 276 struct iscsi_iface *iface = iscsi_dev_to_iface(dev); in iscsi_iface_release() local 277 struct device *parent = iface->dev.parent; in iscsi_iface_release() 279 kfree(iface); in iscsi_iface_release() 299 struct iscsi_iface *iface = iscsi_dev_to_iface(dev); \ 300 struct iscsi_transport *t = iface->transport; \ 301 return t->get_iface_param(iface, param_type, param, buf); \ 375 iscsi_iface_net_attr(iface, enabled, ISCSI_NET_PARAM_IFACE_ENABLE); 376 iscsi_iface_net_attr(iface, vlan_id, ISCSI_NET_PARAM_VLAN_ID); 377 iscsi_iface_net_attr(iface, vlan_priority, ISCSI_NET_PARAM_VLAN_PRIORITY); 378 iscsi_iface_net_attr(iface, vlan_enabled, ISCSI_NET_PARAM_VLAN_ENABLED); [all …]
|
/linux-4.1.27/tools/usb/ffs-aio-example/multibuff/host_app/ |
D | test.c | 158 struct libusb_interface_descriptor const *iface; in main() local 165 iface = &conf->interface[0].altsetting[0]; in main() 166 addr = iface->endpoint[0].bEndpointAddress; in main()
|
/linux-4.1.27/Documentation/devicetree/bindings/soc/qcom/ |
D | qcom,gsbi.txt | 13 - clock-names: must contain "iface" entry 48 clock-names = "iface"; 65 clock-names = "core", "iface"; 80 clock-names = "core", "iface";
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | sdhci-msm.txt | 17 "iface" - Main peripheral bus clock (PCLK/HCLK - AHB Bus clock) (required) 37 clock-names = "core", "iface"; 54 clock-names = "core", "iface";
|
D | sdhci-fujitsu.txt | 12 "iface" - clock used for sdhci interface 29 clock-names = "iface", "core";
|
/linux-4.1.27/drivers/hwmon/ |
D | ibmpex.c | 66 static void ibmpex_register_bmc(int iface, struct device *dev); 67 static void ibmpex_bmc_gone(int iface); 261 static struct ibmpex_bmc_data *get_bmc_data(int iface) in get_bmc_data() argument 266 if (p->interface == iface) in get_bmc_data() 457 static void ibmpex_register_bmc(int iface, struct device *dev) in ibmpex_register_bmc() argument 469 data->interface = iface; in ibmpex_register_bmc() 551 static void ibmpex_bmc_gone(int iface) in ibmpex_bmc_gone() argument 553 struct ibmpex_bmc_data *data = get_bmc_data(iface); in ibmpex_bmc_gone()
|
D | ibmaem.c | 245 static void aem_register_bmc(int iface, struct device *dev); 246 static void aem_bmc_gone(int iface); 270 static int aem_init_ipmi_data(struct aem_ipmi_data *data, int iface, in aem_init_ipmi_data() argument 282 data->interface = iface; in aem_init_ipmi_data() 789 static void aem_register_bmc(int iface, struct device *dev) in aem_register_bmc() argument 793 if (aem_init_ipmi_data(&probe, iface, dev)) in aem_register_bmc() 804 static void aem_bmc_gone(int iface) in aem_bmc_gone() argument 809 if (p1->ipmi.interface == iface) in aem_bmc_gone()
|
/linux-4.1.27/Documentation/devicetree/bindings/crypto/ |
D | qcom-qce.txt | 8 - clock-names : "iface" clocks register interface 22 clock-names = "iface", "bus", "core";
|
/linux-4.1.27/drivers/of/ |
D | of_mdio.c | 221 phy_interface_t iface) in of_phy_connect() argument 230 return phy_connect_direct(dev, phy, hndlr, iface) ? NULL : phy; in of_phy_connect() 243 phy_interface_t iface) in of_phy_attach() argument 250 return phy_attach_direct(dev, phy, flags, iface) ? NULL : phy; in of_phy_attach()
|
/linux-4.1.27/sound/pci/emu10k1/ |
D | emumixer.c | 493 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 554 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 622 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 670 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 801 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 852 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 903 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 983 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1057 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 1145 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, [all …]
|
/linux-4.1.27/drivers/staging/lustre/lnet/lnet/ |
D | config.c | 216 char *iface; in lnet_parse_networks() local 295 iface = bracket + 1; in lnet_parse_networks() 297 bracket = strchr(iface, ')'); in lnet_parse_networks() 299 tmp = iface; in lnet_parse_networks() 305 comma = strchr(iface, ','); in lnet_parse_networks() 309 iface = cfs_trimwhite(iface); in lnet_parse_networks() 310 if (*iface == 0) { in lnet_parse_networks() 311 tmp = iface; in lnet_parse_networks() 322 ni->ni_interfaces[niface++] = iface; in lnet_parse_networks() 323 iface = comma; in lnet_parse_networks() [all …]
|
/linux-4.1.27/drivers/media/usb/gspca/ |
D | stk014.c | 235 usb_set_interface(gspca_dev->dev, gspca_dev->iface, 1); in sd_init() 259 usb_set_interface(gspca_dev->dev, gspca_dev->iface, 1); in sd_start() 271 gspca_dev->iface, in sd_start() 275 gspca_dev->iface, gspca_dev->alt); in sd_start() 309 usb_set_interface(dev, gspca_dev->iface, 1); in sd_stopN()
|
D | benq.c | 141 intf = usb_ifnum_to_if(gspca_dev->dev, gspca_dev->iface); in sd_stopN() 142 usb_set_interface(gspca_dev->dev, gspca_dev->iface, in sd_stopN()
|
/linux-4.1.27/sound/pci/pcxhr/ |
D | pcxhr_mixer.c | 189 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 239 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 414 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 464 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 513 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 566 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 701 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 802 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 847 .iface = SNDRV_CTL_ELEM_IFACE_CARD, 1022 .iface = SNDRV_CTL_ELEM_IFACE_PCM, [all …]
|
/linux-4.1.27/sound/drivers/vx/ |
D | vx_mixer.c | 459 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 518 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 562 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 721 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 731 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 738 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 748 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 810 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 817 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 882 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/serial/ |
D | qcom,msm-uartdm.txt | 23 - clock-names: Should be "core" for the core clock and "iface" for the 44 clock-names = "core", "iface"; 57 clock-names = "core", "iface";
|
/linux-4.1.27/sound/drivers/opl4/ |
D | opl4_mixer.c | 65 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 73 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | qcom,i2c-qup.txt | 15 * "iface" for the AHB clock 34 clock-names = "core", "iface";
|
/linux-4.1.27/drivers/hid/usbhid/ |
D | usbkbd.c | 274 static int usb_kbd_probe(struct usb_interface *iface, in usb_kbd_probe() argument 277 struct usb_device *dev = interface_to_usbdev(iface); in usb_kbd_probe() 285 interface = iface->cur_altsetting; in usb_kbd_probe() 330 input_dev->dev.parent = &iface->dev; in usb_kbd_probe() 370 usb_set_intfdata(iface, kbd); in usb_kbd_probe()
|
/linux-4.1.27/drivers/net/wan/ |
D | pc300too.c | 88 unsigned int iface; member 159 if (port->iface == IF_IFACE_V35) in pc300_set_iface() 212 ifr->ifr_settings.type = port->iface; in pc300_ioctl() 256 port->iface = new_type; in pc300_ioctl() 461 port->iface = IF_IFACE_X21; in pc300_pci_init_one() 463 port->iface = IF_IFACE_V35; in pc300_pci_init_one()
|
/linux-4.1.27/sound/ppc/ |
D | tumbler.c | 613 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\ 622 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\ 831 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\ 844 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 850 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 859 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 868 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 874 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 886 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 892 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, [all …]
|
D | awacs.c | 202 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \ 253 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \ 481 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 488 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 495 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 502 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 509 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 518 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 527 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 673 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
D | daca.c | 203 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 209 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 215 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
D | burgundy.c | 211 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex,\ 287 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex,\ 349 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex,\ 404 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex,\ 460 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex,\
|
/linux-4.1.27/Documentation/devicetree/bindings/ata/ |
D | qcom-sata.txt | 18 "iface" - AHB clock 41 clock-names = "slave_iface", "iface", "core",
|
/linux-4.1.27/sound/i2c/ |
D | cs8427.c | 479 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 488 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 498 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 504 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 514 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 522 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
|
D | tea6330t.c | 82 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 141 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 185 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 232 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
|
/linux-4.1.27/sound/pcmcia/vx/ |
D | vxp_mixer.c | 73 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 113 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/drivers/net/ethernet/3com/ |
D | typhoon.c | 243 struct typhoon_interface iface; member 1181 struct typhoon_interface *iface = &tp->shared->iface; in typhoon_init_interface() local 1189 iface->ringIndex = cpu_to_le32(shared_dma); in typhoon_init_interface() 1192 iface->txLoAddr = cpu_to_le32(shared_dma); in typhoon_init_interface() 1193 iface->txLoSize = cpu_to_le32(TXLO_ENTRIES * sizeof(struct tx_desc)); in typhoon_init_interface() 1196 iface->txHiAddr = cpu_to_le32(shared_dma); in typhoon_init_interface() 1197 iface->txHiSize = cpu_to_le32(TXHI_ENTRIES * sizeof(struct tx_desc)); in typhoon_init_interface() 1200 iface->rxBuffAddr = cpu_to_le32(shared_dma); in typhoon_init_interface() 1201 iface->rxBuffSize = cpu_to_le32(RXFREE_ENTRIES * in typhoon_init_interface() 1205 iface->rxLoAddr = cpu_to_le32(shared_dma); in typhoon_init_interface() [all …]
|
/linux-4.1.27/sound/aoa/codecs/ |
D | tas.c | 275 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 318 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 374 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 430 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 470 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 528 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 590 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 641 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
D | onyx.c | 171 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 233 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 288 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 352 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 418 .iface = SNDRV_CTL_ELEM_IFACE_##type, \ 481 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 538 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
|
/linux-4.1.27/security/apparmor/ |
D | policy_unpack.c | 73 if (sa->aad->iface.target) { in audit_cb() 74 struct aa_profile *name = sa->aad->iface.target; in audit_cb() 78 if (sa->aad->iface.pos) in audit_cb() 79 audit_log_format(ab, " offset=%ld", sa->aad->iface.pos); in audit_cb() 101 aad.iface.pos = e->pos - e->start; in audit_iface() 102 aad.iface.target = new; in audit_iface()
|
/linux-4.1.27/sound/isa/cs423x/ |
D | cs4236_lib.c | 395 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 401 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 460 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 506 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 513 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 593 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 600 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 662 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 706 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 940 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
|
/linux-4.1.27/Documentation/devicetree/bindings/dma/ |
D | qcom_adm.txt | 10 - clock-names: Must contain "core" for the core clock and "iface" for the 28 clock-names = "core", "iface";
|
/linux-4.1.27/drivers/gpu/drm/shmobile/ |
D | shmob_drm_drv.c | 60 if (sdev->pdata->iface.interface >= ARRAY_SIZE(ldmt1r)) { in shmob_drm_init_interface() 62 sdev->pdata->iface.interface); in shmob_drm_init_interface() 66 sdev->ldmt1r = ldmt1r[sdev->pdata->iface.interface]; in shmob_drm_init_interface()
|
/linux-4.1.27/net/mac802154/ |
D | Makefile | 3 iface.o llsec.o util.o cfg.o
|
/linux-4.1.27/drivers/staging/ozwpan/ |
D | ozhcd.c | 118 struct oz_interface *iface; member 879 port->iface[if_num].alt = alt; in oz_hcd_complete_set_interface() 1192 if (if_ix >= port->num_iface || port->iface == NULL) in oz_build_endpoints_for_interface() 1237 port->iface[if_ix].ep_mask |= in oz_build_endpoints_for_interface() 1246 port->iface[if_ix].ep_mask |= (1<<ep_num); in oz_build_endpoints_for_interface() 1276 mask = port->iface[if_ix].ep_mask; in oz_clean_endpoints_for_interface() 1277 port->iface[if_ix].ep_mask = 0; in oz_clean_endpoints_for_interface() 1316 struct oz_interface *iface; in oz_build_endpoints_for_config() local 1318 iface = kmalloc_array(num_iface, sizeof(struct oz_interface), in oz_build_endpoints_for_config() 1320 if (!iface) in oz_build_endpoints_for_config() [all …]
|
/linux-4.1.27/sound/pci/mixart/ |
D | mixart_mixer.c | 408 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 452 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 902 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 955 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1028 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1095 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/Documentation/isdn/ |
D | README.x25 | 92 isdnctrl encap <iface-name> x25iface. 113 isdnctrl l2_prot <iface-name> x75i 117 isdnctrl l2_prot <iface-name> x25dte 121 isdnctrl l2_prot <iface-name> x25dce 159 ifconfig <iface-name> up 164 x25route add 01 <iface-name>
|
/linux-4.1.27/sound/mips/ |
D | sgio2audio.c | 234 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 246 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 258 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 269 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 279 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 291 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 303 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/sound/pci/ |
D | ak4531_codec.c | 66 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 71 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 133 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 138 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 218 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
|
/linux-4.1.27/arch/mips/cavium-octeon/ |
D | octeon-platform.c | 563 static void __init octeon_fdt_pip_port(int iface, int i, int p, int max, u64 *pmac) in octeon_fdt_pip_port() argument 571 eth = fdt_subnode_offset(initial_boot_params, iface, name_buffer); in octeon_fdt_pip_port() 592 int iface; in octeon_fdt_pip_iface() local 597 iface = fdt_subnode_offset(initial_boot_params, pip, name_buffer); in octeon_fdt_pip_iface() 598 if (iface < 0) in octeon_fdt_pip_iface() 605 octeon_fdt_pip_port(iface, idx, p, count - 1, pmac); in octeon_fdt_pip_iface()
|
/linux-4.1.27/drivers/net/can/usb/ |
D | gs_usb.c | 160 struct usb_interface *iface; member 230 struct usb_interface *intf = gsdev->iface; in gs_cmd_reset() 398 struct usb_interface *intf = dev->iface; in gs_usb_set_bittiming() 658 rc = usb_control_msg(interface_to_usbdev(dev->iface), in gs_can_open() 659 usb_sndctrlpipe(interface_to_usbdev(dev->iface), 0), in gs_can_open() 780 dev->iface = intf; in gs_make_candev()
|
/linux-4.1.27/sound/drivers/ |
D | mts64.c | 487 .iface = SNDRV_CTL_ELEM_IFACE_RAWMIDI, 560 .iface = SNDRV_CTL_ELEM_IFACE_RAWMIDI, 571 .iface = SNDRV_CTL_ELEM_IFACE_RAWMIDI, 582 .iface = SNDRV_CTL_ELEM_IFACE_RAWMIDI, 593 .iface = SNDRV_CTL_ELEM_IFACE_RAWMIDI, 645 .iface = SNDRV_CTL_ELEM_IFACE_RAWMIDI,
|
/linux-4.1.27/sound/pci/hda/ |
D | hda_local.h | 46 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \ 71 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \ 89 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \ 183 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \ 224 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 235 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,\
|
/linux-4.1.27/drivers/isdn/hisax/ |
D | hfc_usb.c | 1261 struct usb_host_interface *iface = intf->cur_altsetting; in hfc_usb_probe() local 1264 int ifnum = iface->desc.bInterfaceNumber; in hfc_usb_probe() 1282 ifnum, iface->desc.bAlternateSetting, intf->minor); in hfc_usb_probe() 1294 iface = intf->altsetting + alt_idx; in hfc_usb_probe() 1295 probe_alt_setting = iface->desc.bAlternateSetting; in hfc_usb_probe() 1303 ep = iface->endpoint; in hfc_usb_probe() 1308 for (i = 0; i < iface->desc.bNumEndpoints; in hfc_usb_probe() 1348 iface_used = iface; in hfc_usb_probe() 1358 iface = iface_used; in hfc_usb_probe() 1362 ep = iface->endpoint; in hfc_usb_probe() [all …]
|
/linux-4.1.27/sound/pci/echoaudio/ |
D | echoaudio.c | 1044 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1055 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1125 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1189 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1255 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1325 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1393 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1482 .iface = SNDRV_CTL_ELEM_IFACE_CARD, 1532 .iface = SNDRV_CTL_ELEM_IFACE_CARD, 1605 .iface = SNDRV_CTL_ELEM_IFACE_PCM, [all …]
|
/linux-4.1.27/drivers/net/wireless/ |
D | atmel.c | 3600 struct host_info_struct *iface = &priv->host_info; in atmel_wakeup_firmware() local 3672 atmel_copy_to_host(priv->dev, (unsigned char *)iface, in atmel_wakeup_firmware() 3673 priv->host_info_base, sizeof(*iface)); in atmel_wakeup_firmware() 3675 iface->tx_buff_pos = le16_to_cpu(iface->tx_buff_pos); in atmel_wakeup_firmware() 3676 iface->tx_buff_size = le16_to_cpu(iface->tx_buff_size); in atmel_wakeup_firmware() 3677 iface->tx_desc_pos = le16_to_cpu(iface->tx_desc_pos); in atmel_wakeup_firmware() 3678 iface->tx_desc_count = le16_to_cpu(iface->tx_desc_count); in atmel_wakeup_firmware() 3679 iface->rx_buff_pos = le16_to_cpu(iface->rx_buff_pos); in atmel_wakeup_firmware() 3680 iface->rx_buff_size = le16_to_cpu(iface->rx_buff_size); in atmel_wakeup_firmware() 3681 iface->rx_desc_pos = le16_to_cpu(iface->rx_desc_pos); in atmel_wakeup_firmware() [all …]
|
/linux-4.1.27/sound/pci/au88x0/ |
D | au88x0_mixer.c | 18 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in remove_ctl()
|
/linux-4.1.27/net/batman-adv/ |
D | routing.h | 33 struct batadv_hard_iface *iface);
|
/linux-4.1.27/drivers/media/platform/davinci/ |
D | vpif.c | 345 vpifparams->iface.fid_pol); in config_vpif_params() 347 vpifparams->iface.vd_pol); in config_vpif_params() 349 vpifparams->iface.hd_pol); in config_vpif_params()
|
/linux-4.1.27/include/linux/platform_data/ |
D | shmob_drm.h | 93 struct shmob_drm_interface_data iface; member
|
/linux-4.1.27/sound/core/ |
D | ctljack.c | 28 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
|
/linux-4.1.27/sound/isa/sb/ |
D | sb_mixer.c | 458 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_sbmixer_add_ctl() 464 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_sbmixer_add_ctl() 470 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_sbmixer_add_ctl() 476 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_sbmixer_add_ctl() 482 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_sbmixer_add_ctl() 488 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_sbmixer_add_ctl()
|
D | emu8000.c | 873 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 883 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 940 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 950 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1002 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1012 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/drivers/usb/host/ |
D | hwa-hc.c | 717 static int hwahc_create(struct hwahc *hwahc, struct usb_interface *iface, in hwahc_create() argument 721 struct device *dev = &iface->dev; in hwahc_create() 724 struct usb_device *usb_dev = interface_to_usbdev(iface); in hwahc_create() 727 wa->usb_iface = usb_get_intf(iface); in hwahc_create() 763 result = wa_create(&hwahc->wa, iface, quirks); in hwahc_create() 774 usb_put_intf(iface); in hwahc_create()
|
/linux-4.1.27/sound/pci/rme9652/ |
D | rme9652.c | 884 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 956 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1021 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1082 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1163 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1306 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1345 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1370 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1402 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 1477 .iface = SNDRV_CTL_ELEM_IFACE_PCM, [all …]
|
D | hdsp.c | 1657 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 1714 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 1772 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 1831 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 1855 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 1914 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 1947 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 2104 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 2183 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 2262 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ [all …]
|
/linux-4.1.27/sound/pci/ctxfi/ |
D | ctmixer.c | 407 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 442 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 478 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 613 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 678 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 687 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 698 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 719 if (SNDRV_CTL_ELEM_IFACE_PCM == kctl->id.iface) in ct_mixer_kcontrol_new()
|
/linux-4.1.27/sound/isa/gus/ |
D | gus_mixer.c | 33 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 76 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | qcom,spi-qup.txt | 19 - clock-names: Should be "core" for the core clock and "iface" for the 57 clock-names = "core", "iface";
|
/linux-4.1.27/drivers/net/usb/ |
D | hso.c | 3025 static int hso_suspend(struct usb_interface *iface, pm_message_t message) in hso_suspend() argument 3031 if (serial_table[i] && (serial_table[i]->interface == iface)) { in hso_suspend() 3041 (network_table[i]->interface == iface)) { in hso_suspend() 3053 static int hso_resume(struct usb_interface *iface) in hso_resume() argument 3060 if (serial_table[i] && (serial_table[i]->interface == iface)) { in hso_resume() 3074 (network_table[i]->interface == iface)) { in hso_resume() 3080 dev_dbg(&iface->dev, in hso_resume() 3152 struct usb_host_interface *iface = intf->cur_altsetting; in hso_get_ep() local 3155 for (i = 0; i < iface->desc.bNumEndpoints; i++) { in hso_get_ep() 3156 endp = &iface->endpoint[i].desc; in hso_get_ep() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | msm-hsusb.txt | 33 "iface" Interface bus clock 83 clock-names = "phy", "core", "iface";
|
/linux-4.1.27/include/media/ |
D | soc_camera.h | 41 unsigned char iface; /* Host number */ member 409 return (icd->iface << 8) | (icd->devnum + 1); in soc_camera_grp_id()
|
/linux-4.1.27/sound/soc/fsl/ |
D | fsl_spdif.c | 892 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 902 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 911 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 919 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 928 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 937 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 946 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
|
/linux-4.1.27/drivers/scsi/be2iscsi/ |
D | be_iscsi.h | 37 int be2iscsi_iface_get_param(struct iscsi_iface *iface,
|
/linux-4.1.27/security/apparmor/include/ |
D | audit.h | 117 } iface; member
|
/linux-4.1.27/sound/firewire/bebob/ |
D | bebob_maudio.c | 392 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 425 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 517 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 573 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
/linux-4.1.27/sound/isa/ |
D | opl3sa2.c | 342 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 347 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 397 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ 402 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ 508 id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER; in snd_opl3sa2_mixer()
|
/linux-4.1.27/sound/firewire/oxfw/ |
D | oxfw-control.c | 237 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_oxfw_create_mixer() 244 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, in snd_oxfw_create_mixer()
|
/linux-4.1.27/net/mac80211/ |
D | Makefile | 13 iface.o \
|