/linux-4.4.14/sound/soc/ |
D | soc-io.c | 28 int snd_soc_component_read(struct snd_soc_component *component, in snd_soc_component_read() argument 33 if (component->regmap) in snd_soc_component_read() 34 ret = regmap_read(component->regmap, reg, val); in snd_soc_component_read() 35 else if (component->read) in snd_soc_component_read() 36 ret = component->read(component, reg, val); in snd_soc_component_read() 52 int snd_soc_component_write(struct snd_soc_component *component, in snd_soc_component_write() argument 55 if (component->regmap) in snd_soc_component_write() 56 return regmap_write(component->regmap, reg, val); in snd_soc_component_write() 57 else if (component->write) in snd_soc_component_write() 58 return component->write(component, reg, val); in snd_soc_component_write() [all …]
|
D | soc-core.c | 285 static void soc_init_component_debugfs(struct snd_soc_component *component) in soc_init_component_debugfs() argument 287 if (!component->card->debugfs_card_root) in soc_init_component_debugfs() 290 if (component->debugfs_prefix) { in soc_init_component_debugfs() 294 component->debugfs_prefix, component->name); in soc_init_component_debugfs() 296 component->debugfs_root = debugfs_create_dir(name, in soc_init_component_debugfs() 297 component->card->debugfs_card_root); in soc_init_component_debugfs() 301 component->debugfs_root = debugfs_create_dir(component->name, in soc_init_component_debugfs() 302 component->card->debugfs_card_root); in soc_init_component_debugfs() 305 if (!component->debugfs_root) { in soc_init_component_debugfs() 306 dev_warn(component->dev, in soc_init_component_debugfs() [all …]
|
D | soc-ops.c | 67 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in snd_soc_get_enum_double() local 73 ret = snd_soc_component_read(component, e->reg, ®_val); in snd_soc_get_enum_double() 101 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in snd_soc_put_enum_double() local 118 return snd_soc_component_update_bits(component, e->reg, mask, val); in snd_soc_put_enum_double() 137 static int snd_soc_read_signed(struct snd_soc_component *component, in snd_soc_read_signed() argument 144 ret = snd_soc_component_read(component, reg, &val); in snd_soc_read_signed() 250 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in snd_soc_get_volsw() local 268 ret = snd_soc_read_signed(component, reg, mask, shift, sign_bit, &val); in snd_soc_get_volsw() 279 ret = snd_soc_read_signed(component, reg, mask, rshift, in snd_soc_get_volsw() 282 ret = snd_soc_read_signed(component, reg2, mask, shift, in snd_soc_get_volsw() [all …]
|
D | soc-cache.c | 29 codec->component.name); in snd_soc_cache_init() 49 codec->component.name); in snd_soc_cache_exit()
|
D | soc-ac97.c | 72 ac97->dev.parent = codec->component.card->dev; in snd_soc_alloc_ac97_codec() 76 codec->component.card->snd_card->number, 0, in snd_soc_alloc_ac97_codec() 77 codec->component.name); in snd_soc_alloc_ac97_codec()
|
D | soc-dapm.c | 554 if (!dapm->component) in soc_dapm_prefix() 556 return dapm->component->name_prefix; in soc_dapm_prefix() 562 if (!dapm->component) in soc_dapm_read() 564 return snd_soc_component_read(dapm->component, reg, value); in soc_dapm_read() 570 if (!dapm->component) in soc_dapm_update_bits() 572 return snd_soc_component_update_bits(dapm->component, reg, in soc_dapm_update_bits() 579 if (!dapm->component) in soc_dapm_test_bits() 581 return snd_soc_component_test_bits(dapm->component, reg, mask, value); in soc_dapm_test_bits() 586 if (dapm->component) in soc_dapm_async_complete() 587 snd_soc_component_async_complete(dapm->component); in soc_dapm_async_complete() [all …]
|
D | soc-compress.c | 41 platform->component.name); in soc_compr_open() 89 platform->component.name); in soc_compr_open_fe() 712 codec->component.name); in snd_soc_new_compress()
|
D | soc-pcm.c | 83 cpu_dai->component->active++; in snd_soc_runtime_activate() 86 rtd->codec_dais[i]->component->active++; in snd_soc_runtime_activate() 118 cpu_dai->component->active--; in snd_soc_runtime_deactivate() 120 rtd->codec_dais[i]->component->active--; in snd_soc_runtime_deactivate() 143 ignore &= rtd->codec_dais[i]->component->ignore_pmdown_time; in snd_soc_runtime_ignore_pmdown_time() 145 return rtd->cpu_dai->component->ignore_pmdown_time && ignore; in snd_soc_runtime_ignore_pmdown_time() 482 " %s: %d\n", platform->component.name, ret); in soc_pcm_open() 906 platform->component.name, ret); in soc_pcm_hw_params()
|
D | soc-topology.c | 1784 remove_widget(w->dapm->component, &w->dobj, SOC_TPLG_PASS_WIDGET); in snd_soc_tplg_widget_remove()
|
/linux-4.4.14/drivers/base/ |
D | component.c | 40 struct component { struct 67 static void component_attach_master(struct master *master, struct component *c) in component_attach_master() 75 static void component_detach_master(struct master *master, struct component *c) in component_detach_master() 90 struct component *c; in component_master_add_child() 141 struct component *c = list_first_entry(&master->components, in master_remove_components() 142 struct component, master_node); in master_remove_components() 158 struct component *component) in try_to_bring_up_master() argument 175 if (component && component->master != master) { in try_to_bring_up_master() 202 static int try_to_bring_up_masters(struct component *component) in try_to_bring_up_masters() argument 208 ret = try_to_bring_up_master(m, component); in try_to_bring_up_masters() [all …]
|
D | Makefile | 3 obj-y := component.o core.o bus.o dd.o syscore.o \
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | uttrack.c | 72 u32 component, const char *module, u32 line); 76 u32 component, const char *module, u32 line); 128 u32 component, const char *module, u32 line) in acpi_ut_allocate_and_track() argument 154 ACPI_MEM_MALLOC, component, module, in acpi_ut_allocate_and_track() 189 u32 component, in acpi_ut_allocate_zeroed_and_track() argument 216 ACPI_MEM_CALLOC, component, module, in acpi_ut_allocate_zeroed_and_track() 252 u32 component, const char *module, u32 line) in acpi_ut_free_and_track() argument 273 component, module, line); in acpi_ut_free_and_track() 368 u32 component, const char *module, u32 line) in acpi_ut_track_allocation() argument 402 allocation->component = component; in acpi_ut_track_allocation() [all …]
|
D | acutils.h | 628 u32 component, const char *module, u32 line); 631 u32 component, 636 u32 component, const char *module, u32 line); 640 void acpi_ut_dump_allocations(u32 component, const char *module);
|
D | nsdump.c | 134 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component) in acpi_ns_dump_pathname() argument 141 if (!ACPI_IS_DEBUG_ENABLED(level, component)) { in acpi_ns_dump_pathname()
|
D | acnamesp.h | 201 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component);
|
D | aclocal.h | 1164 u32 component; \
|
/linux-4.4.14/include/acpi/ |
D | acoutput.h | 287 #define ACPI_IS_DEBUG_ENABLED(level, component) \ argument 288 ((level & acpi_dbg_level) && (component & acpi_dbg_layer)) 322 #define ACPI_DO_DEBUG_PRINT(function, level, line, filename, modulename, component, ...) \ argument 324 if (ACPI_IS_DEBUG_ENABLED (level, component)) \ 326 function (level, line, filename, modulename, component, __VA_ARGS__); \ 330 #define ACPI_ACTUAL_DEBUG(level, line, filename, modulename, component, ...) \ argument 332 filename, modulename, component, __VA_ARGS__) 334 #define ACPI_ACTUAL_DEBUG_RAW(level, line, filename, modulename, component, ...) \ argument 336 filename, modulename, component, __VA_ARGS__) 473 #define ACPI_IS_DEBUG_ENABLED(level, component) 0 argument
|
/linux-4.4.14/include/sound/ |
D | soc.h | 580 int snd_soc_add_component_controls(struct snd_soc_component *component, 765 int (*of_xlate_dai_name)(struct snd_soc_component *component, 834 void (*init_debugfs)(struct snd_soc_component *component); 858 struct snd_soc_component component; member 949 struct snd_soc_component component; member 1068 int (*init)(struct snd_soc_component *component); 1194 struct snd_soc_component *component; /* Only valid for AUX dev rtds */ member 1259 struct snd_soc_component *component) in snd_soc_component_to_codec() argument 1261 return container_of(component, struct snd_soc_codec, component); in snd_soc_component_to_codec() 1272 struct snd_soc_component *component) in snd_soc_component_to_platform() argument [all …]
|
D | soc-dai.h | 287 struct snd_soc_component *component; member
|
D | core.h | 264 int snd_component_add(struct snd_card *card, const char *component);
|
D | soc-dapm.h | 623 struct snd_soc_component *component; /* parent component */ member
|
/linux-4.4.14/drivers/misc/ |
D | enclosure.c | 149 edev->component[i].number = -1; in enclosure_register() 150 edev->component[i].slot = -1; in enclosure_register() 151 edev->component[i].power_status = 1; in enclosure_register() 183 if (edev->component[i].number != -1) in enclosure_unregister() 184 device_unregister(&edev->component[i].cdev); in enclosure_unregister() 266 ecomp = &edev->component[i]; in enclosure_component_find_by_name() 305 ecomp = &edev->component[number]; in enclosure_component_alloc() 374 int enclosure_add_device(struct enclosure_device *edev, int component, in enclosure_add_device() argument 379 if (!edev || component >= edev->components) in enclosure_add_device() 382 cdev = &edev->component[component]; in enclosure_add_device() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/media/i2c/ |
D | tvp514x.txt | 5 video formats into digital video component. The tvp514x decoder supports analog- 6 to-digital (A/D) conversion of component RGB and YPbPr signals as well as A/D 8 component YCbCr.
|
D | adv7343.txt | 5 (CVBS), S-Video (Y-C), and component (YPrPb/RGB) analog outputs in standard
|
/linux-4.4.14/Documentation/DocBook/ |
D | alsa-driver-api.xml.db | 9 API-snd-component-add 223 API-snd-soc-component-to-codec 224 API-snd-soc-component-to-platform 225 API-snd-soc-dapm-to-component 228 API-snd-soc-component-get-dapm 237 API-snd-soc-kcontrol-component 242 API-snd-soc-add-component-controls 259 API-snd-soc-component-init-regmap 260 API-snd-soc-component-exit-regmap 261 API-snd-soc-unregister-component [all …]
|
D | gpu.xml.db | 565 API-i915-audio-component-init 566 API-i915-audio-component-cleanup 567 API-struct-i915-audio-component-ops 568 API-struct-i915-audio-component
|
D | device-drivers.xml.db | 718 API-snd-component-add
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | rtllib_debug.h | 61 #define RT_TRACE(component, x, args...) \ argument 63 if (rt_global_debug_component & component) \
|
D | license | 166 the executable runs, unless that component itself accompanies the
|
/linux-4.4.14/drivers/char/agp/ |
D | Kconfig | 33 This option gives you AGP support for the GLX component of 48 This option gives you AGP support for the GLX component of 55 This option gives you AGP support for the GLX component of 62 This option gives you AGP support for the GLX component of 73 This option gives you AGP support for the GLX component of X 84 This option gives you AGP support for the GLX component of 91 This option gives you AGP support for the GLX component of 108 This option gives you AGP support for the GLX component of
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ti/ |
D | composite.txt | 16 The binding must provide a list of the component clocks that shall be 17 merged to this clock. The component clocks shall be of one of the 27 - clocks : link phandles of component clocks
|
/linux-4.4.14/sound/soc/codecs/ |
D | sigmadsp.h | 36 struct snd_soc_component *component; member 62 struct snd_soc_component *component);
|
D | max9768.c | 132 static int max9768_probe(struct snd_soc_component *component) in max9768_probe() argument 134 struct max9768 *max9768 = snd_soc_component_get_drvdata(component); in max9768_probe() 145 ret = snd_soc_add_component_controls(component, max9768_mute, in max9768_probe()
|
D | ts3a227e.h | 14 int ts3a227e_enable_jack_detect(struct snd_soc_component *component,
|
D | cx20442.c | 256 codec->component.card->pop_time = 0; in v253_close() 284 codec->component.card->pop_time = 1; in v253_receive() 373 codec->component.card->pop_time = 0; in cx20442_codec_probe()
|
D | sigmadsp.c | 655 return snd_ctl_add(sigmadsp->component->card->snd_card, kcontrol); in sigmadsp_alloc_control() 661 struct snd_card *card = sigmadsp->component->card->snd_card; in sigmadsp_activate_ctrl() 706 struct snd_soc_component *component) in sigmadsp_attach() argument 712 sigmadsp->component = component; in sigmadsp_attach()
|
D | ts3a227e.c | 238 int ts3a227e_enable_jack_detect(struct snd_soc_component *component, in ts3a227e_enable_jack_detect() argument 241 struct ts3a227e *ts3a227e = snd_soc_component_get_drvdata(component); in ts3a227e_enable_jack_detect()
|
D | ac97.c | 76 ret = snd_ac97_bus(codec->component.card->snd_card, 0, soc_ac97_ops, in ac97_soc_probe()
|
D | rt5645.c | 500 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5645_hweq_get() local 501 struct rt5645_priv *rt5645 = snd_soc_component_get_drvdata(component); in rt5645_hweq_get() 526 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5645_hweq_put() local 527 struct rt5645_priv *rt5645 = snd_soc_component_get_drvdata(component); in rt5645_hweq_put() 571 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5645_spk_put_volsw() local 572 struct rt5645_priv *rt5645 = snd_soc_component_get_drvdata(component); in rt5645_spk_put_volsw()
|
D | wm_adsp.c | 350 if (!codec->component.debugfs_root) { in wm_adsp2_init_debugfs() 360 root = debugfs_create_dir(root_name, codec->component.debugfs_root); in wm_adsp2_init_debugfs() 1800 dsp->card = codec->component.card; in wm_adsp1_event() 1999 dsp->card = codec->component.card; in wm_adsp2_early_event()
|
D | rt5677.c | 804 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5677_dsp_vad_get() local 805 struct rt5677_priv *rt5677 = snd_soc_component_get_drvdata(component); in rt5677_dsp_vad_get() 815 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5677_dsp_vad_put() local 816 struct rt5677_priv *rt5677 = snd_soc_component_get_drvdata(component); in rt5677_dsp_vad_put() 817 struct snd_soc_codec *codec = snd_soc_component_to_codec(component); in rt5677_dsp_vad_put()
|
D | adau17x1.c | 830 ret = sigmadsp_attach(adau->sigmadsp, &codec->component); in adau17x1_add_widgets()
|
D | adau1701.c | 673 ret = sigmadsp_attach(adau1701->sigmadsp, &codec->component); in adau1701_probe()
|
D | wm8960.c | 496 list_for_each_entry(w, &codec->component.card->widgets, list) { in wm8960_add_widgets()
|
D | tlv320dac33.c | 1407 codec->component.name, codec); in dac33_soc_probe()
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | coresight.txt | 8 sink. Each CoreSight component device should use these properties to describe 24 set(s) of the component. 26 * clocks: the clocks associated to this component. 32 clocks the core of that coresight component. The latter clock 35 * port or ports: The representation of the component's port
|
D | cci.txt | 23 Description: Describes a CCI cache coherent Interconnect component 225 This CCI node corresponds to a CCI component whose control registers sits
|
/linux-4.4.14/include/linux/ |
D | enclosure.h | 115 struct enclosure_component component[0]; member 138 int enclosure_add_device(struct enclosure_device *enclosure, int component,
|
/linux-4.4.14/sound/soc/omap/ |
D | Kconfig | 21 The hdmi audio driver implements cpu-dai component using the 22 callbacks provided by OMAPDSS and registers the component 24 component also under DSS HDMI device. Dummy codec is used as 25 as codec component. The hdmi audio driver implements also
|
D | ams-delta.c | 304 struct snd_soc_dapm_context *dapm = &codec->component.card->dapm; in cx81801_close()
|
/linux-4.4.14/fs/nfs/ |
D | nfs4namespace.c | 43 const struct nfs4_string *component = &pathname->components[n]; in nfs4_pathname_string() local 44 buflen -= component->len + 1; in nfs4_pathname_string() 47 end -= component->len; in nfs4_pathname_string() 48 memcpy(end, component->data, component->len); in nfs4_pathname_string()
|
D | nfs4xdr.c | 3580 struct nfs4_string *component = &path->components[path->ncomponents]; in decode_pathname() local 3581 status = decode_opaque_inline(xdr, &component->len, &component->data); in decode_pathname() 3587 component->len, component->data); in decode_pathname()
|
/linux-4.4.14/sound/soc/intel/boards/ |
D | cht_bsw_max98090_ti.c | 202 static int cht_max98090_headset_init(struct snd_soc_component *component) in cht_max98090_headset_init() argument 204 struct snd_soc_card *card = component->card; in cht_max98090_headset_init() 207 return ts3a227e_enable_jack_detect(component, &ctx->jack); in cht_max98090_headset_init()
|
D | broadwell.c | 226 if (!strcmp(codec->component.name, "i2c-INT343A:00")) { in broadwell_suspend() 239 if (!strcmp(codec->component.name, "i2c-INT343A:00")) { in broadwell_resume()
|
D | cht_bsw_rt5672.c | 289 if (!strcmp(codec->component.name, "i2c-10EC5670:00")) { in cht_suspend_pre() 303 if (!strcmp(codec->component.name, "i2c-10EC5670:00")) { in cht_resume_post()
|
/linux-4.4.14/drivers/media/pci/ivtv/ |
D | ivtv-gpio.h | 27 int ivtv_reset_tuner_gpio(void *dev, int component, int cmd, int value);
|
D | ivtv-gpio.c | 128 int ivtv_reset_tuner_gpio(void *dev, int component, int cmd, int value) in ivtv_reset_tuner_gpio() argument
|
/linux-4.4.14/drivers/media/pci/cx18/ |
D | cx18-gpio.h | 34 int cx18_reset_tuner_gpio(void *dev, int component, int cmd, int value);
|
D | cx18-gpio.c | 338 int cx18_reset_tuner_gpio(void *dev, int component, int cmd, int value) in cx18_reset_tuner_gpio() argument
|
/linux-4.4.14/sound/soc/rockchip/ |
D | rockchip_max98090.c | 123 static int rk_98090_headset_init(struct snd_soc_component *component) in rk_98090_headset_init() argument 125 return ts3a227e_enable_jack_detect(component, &headset_jack); in rk_98090_headset_init()
|
/linux-4.4.14/drivers/net/wireless/ipw2x00/ |
D | Kconfig | 174 networking stack. This component is deprecated in favor of the 175 mac80211 component. 178 bool "Full debugging output for the LIBIPW component" 182 libipw component. 198 component, you most likely want to say N here.
|
/linux-4.4.14/Documentation/acpi/ |
D | debug.txt | 17 When CONFIG_ACPI_DEBUG=y, you can select the component and level of messages 23 debug_layer (component) 146 Show all valid component values:
|
D | scan_handlers.txt | 31 component represented by the given device node which can be determined on the
|
D | method-tracing.txt | 20 ACPI_DEBUG_PRINT() macro can be reduced at 2 levels - per-component
|
/linux-4.4.14/drivers/usb/mon/ |
D | Kconfig | 8 If you select this option, a component which captures the USB traffic
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | hisilicon-hns-mdio.txt | 7 - #size-cells: Must be <0>. MDIO addresses have no size component.
|
D | cavium-mdio.txt | 12 - #size-cells: Must be <0>. MDIO addresses have no size component.
|
/linux-4.4.14/drivers/media/usb/tm6000/ |
D | tm6000-alsa.c | 422 char component[14]; in tm6000_audio_init() local 445 sprintf(component, "USB%04x:%04x", in tm6000_audio_init() 448 snd_component_add(card, component); in tm6000_audio_init()
|
D | tm6000.h | 312 int tm6000_tuner_callback(void *ptr, int component, int command, int arg); 313 int tm6000_xc5000_callback(void *ptr, int component, int command, int arg);
|
D | tm6000-cards.c | 691 int tm6000_xc5000_callback(void *ptr, int component, int command, int arg) in tm6000_xc5000_callback() argument 717 int tm6000_tuner_callback(void *ptr, int component, int command, int arg) in tm6000_tuner_callback() argument
|
/linux-4.4.14/Documentation/fb/ |
D | pxafb.txt | 95 for YUV planar modes, it is a requirement for the component 96 with minimum bits per pixel, e.g. for YUV420, Cr component 124 and lengths of each component within the framebuffer.
|
D | api.txt | 114 Pixels are broken into red, green and blue components, and each component 118 Each component is stored in a macropixel according to the variable screen 132 Pixels are broken into red, green and blue components, and each component 135 Each component is stored in a macropixel according to the variable screen 269 component in the pixel value are described by the fb_bitfield offset and
|
D | sstfb.txt | 142 byte -> basically the blue component and some of the green). I'm unable
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | sysfs-bus-w1 | 4 Description: Bus scanning interval, microseconds component.
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | debugfs-ideapad | 8 capability and what graphic component within the machine.
|
D | sysfs-firmware-ofw | 25 directory name is the resolved path component name (node
|
D | configfs-stp-policy | 24 <device> component of its parent directory.
|
D | sysfs-bus-iio | 88 component of the signal while the 'q' channel contains the quadrature 89 component. 1284 x y z w. Here x, y, and z component represents the axis about 1285 which a rotation will occur and w component represents the 1311 component of the signal while the 'q' channel contains the quadrature 1312 component.
|
D | sysfs-block | 118 maximum physical_block_size of the component devices.
|
/linux-4.4.14/drivers/scsi/ |
D | ses.c | 457 if (!edev->component[0].scratch) in ses_enclosure_find_by_addr() 461 scomp = edev->component[i].scratch; in ses_enclosure_find_by_addr() 546 ecomp = &edev->component[components++]; in ses_enclosure_data_process() 736 edev->component[i].scratch = scomp + i; in ses_intf_add() 803 kfree(edev->component[0].scratch); in ses_intf_remove_enclosure()
|
D | 53c700.scr | 33 ; This is the magic component for handling scatter-gather. Each of the
|
D | 53c700_d.h_shipped | 36 ; This is the magic component for handling scatter-gather. Each of the
|
D | Kconfig | 324 The userspace component needed to initialize the driver, documentation,
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c-octeon.txt | 11 - #size-cells: Must be <0>. I2C addresses have no size component.
|
D | qcom,i2c-qup.txt | 18 - #size-cells: Should be <0> as i2c addresses have no size component
|
/linux-4.4.14/sound/soc/samsung/ |
D | speyside.c | 225 static int speyside_wm9081_init(struct snd_soc_component *component) in speyside_wm9081_init() argument 227 struct snd_soc_codec *codec = snd_soc_component_to_codec(component); in speyside_wm9081_init()
|
/linux-4.4.14/drivers/hwtracing/coresight/ |
D | Kconfig | 30 complies with the generic implementation of the component without 49 that complies with the generic implementation of the component without
|
/linux-4.4.14/include/media/ |
D | tuner.h | 230 int (*tuner_callback)(void *dev, int component, int cmd, int arg);
|
/linux-4.4.14/Documentation/hwmon/ |
D | wm831x | 37 thermistor component.
|
/linux-4.4.14/sound/soc/intel/atom/ |
D | sst-atom-controls.c | 330 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in sst_algo_control_get() local 337 dev_err(component->dev, "Invalid Input- algo type:%d\n", in sst_algo_control_get() 435 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in sst_gain_get() local 454 dev_err(component->dev, "Invalid Input- gain type:%d\n", in sst_gain_get() 1398 struct snd_card *card = platform->component.card->snd_card; in sst_fill_widget_module_info() 1454 list_for_each_entry(w, &platform->component.card->widgets, list) { in sst_fill_linked_widgets() 1470 list_for_each_entry(w, &platform->component.card->widgets, list) { in sst_map_modules_to_pipe() 1495 snd_soc_component_get_dapm(&platform->component); in sst_dsp_init_v2_dpcm()
|
D | sst-mfld-platform-pcm.c | 695 drv->soc_card = platform->component.card; in sst_soc_probe()
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | ti,keystone-irq.txt | 6 analyzing SRCCx bits in IPCARx registers. This is one of the component
|
/linux-4.4.14/Documentation/sound/alsa/soc/ |
D | overview.txt | 53 multiple re-usable component drivers :- 66 decribes and binds the other component drivers together to form an ALSA
|
D | pops_clicks.txt | 12 click every time a component power state is changed.
|
D | dapm.txt | 43 consists of the interconnections between every audio component (including 79 Widgets can be added to the sound card by any of the component driver types. 145 machine audio component (non codec or DSP) that can be independently
|
D | machine.txt | 5 component drivers (e.g. codecs, platforms and DAIs). It also describes the
|
D | DPCM.txt | 17 DPCM re-uses all the existing component codec, platform and DAI drivers without 296 component drivers (e.g. codec graph).
|
/linux-4.4.14/sound/core/ |
D | init.c | 876 int snd_component_add(struct snd_card *card, const char *component) in snd_component_add() argument 879 int len = strlen(component); in snd_component_add() 881 ptr = strstr(card->components, component); in snd_component_add() 892 strcat(card->components, component); in snd_component_add()
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | gpio-dsp-keystone.txt | 5 This is one of the component used by the IPC mechanism used on Keystone SOCs.
|
/linux-4.4.14/Documentation/devicetree/bindings/media/ |
D | ti-am437x-vpfe.txt | 4 The Video Processing Front End (VPFE) is a key component for image capture
|
/linux-4.4.14/sound/usb/ |
D | card.c | 335 char component[14]; in snd_usb_audio_create() local 392 sprintf(component, "USB%04x:%04x", in snd_usb_audio_create() 394 snd_component_add(card, component); in snd_usb_audio_create()
|
/linux-4.4.14/Documentation/devicetree/bindings/media/xilinx/ |
D | video.txt | 26 width expressed as a number of bits per pixel component. All components must
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | da9062.txt | 40 The component follows the standard regulator framework and the bindings
|
D | da9063.txt | 47 The component follows the standard regulator framework and the bindings
|
D | qcom-rpm.txt | 4 various Qualcomm platforms. The RPM allows each component in the system to vote
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | dibx000_common.h | 236 u8 component; member
|
/linux-4.4.14/drivers/uio/ |
D | Kconfig | 20 driver requires a userspace component called cif that handles 101 This driver requires a userspace component that comes with the card
|
/linux-4.4.14/Documentation/networking/ |
D | altera_tse.txt | 7 platform bus to obtain component resources. The designs used to test this 25 Triple-Speed Ethernet instance is using an SGDMA or MSGDMA component. The 30 The SGDMA component is to be deprecated in the near future (over the next 1-2 31 years as of this writing in early 2014) in favor of the MSGDMA component.
|
D | LICENSE.qlcnic | 173 operating system on which the executable runs, unless that component
|
D | LICENSE.qlge | 173 operating system on which the executable runs, unless that component
|
/linux-4.4.14/drivers/bus/ |
D | arm-ccn.c | 1365 struct arm_ccn_component *component; in arm_ccn_init_nodes() local 1374 component = &ccn->xp[id]; in arm_ccn_init_nodes() 1378 component = &ccn->node[id]; in arm_ccn_init_nodes() 1384 component = &ccn->node[id]; in arm_ccn_init_nodes() 1388 component->base = base; in arm_ccn_init_nodes() 1389 component->type = type; in arm_ccn_init_nodes()
|
/linux-4.4.14/Documentation/ |
D | sgi-ioc4.txt | 37 component). There's not much to say about it other than it hooks
|
D | unshare.txt | 228 etc, had roughly two components. The first component allocated 229 and duplicated the appropriate structure and the second component 231 function. The first component was split into its own function.
|
D | ntb.txt | 18 component making use of the NTB api. The term "driver," or "hardware driver,"
|
D | IRQ-domain.txt | 19 interrupt controller (i.e. the component actually fireing the
|
D | md.txt | 221 and if the component drives are large enough. 345 As component devices are added to an md array, they appear in the 'md'
|
D | xillybus.txt | 200 Each pipe has a number of attributes which are set when the FPGA component
|
/linux-4.4.14/fs/ocfs2/ |
D | Kconfig | 31 Cluster Base. It only requires a very small userspace component
|
/linux-4.4.14/drivers/hwtracing/intel_th/ |
D | Kconfig | 30 Global Trace Hub (GTH) is the central component of the
|
/linux-4.4.14/Documentation/thermal/ |
D | exynos_thermal | 72 b) TMU driver: This component initialises the TMU controller and sets different
|
D | power_allocator.txt | 132 is the desired one, then the proportional component is zero and
|
/linux-4.4.14/drivers/mtd/onenand/ |
D | Kconfig | 59 Flash memory array, these two component enables simultaneous program
|
/linux-4.4.14/Documentation/devicetree/bindings/display/bridge/ |
D | adi,adv7511.txt | 19 - adi,input-depth: Number of bits per color component at the input (8, 10 or
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/ |
D | qcom,smd-rpm.txt | 4 various Qualcomm platforms. The RPM allows each component in the system to vote
|
/linux-4.4.14/fs/proc/ |
D | proc_sysctl.c | 1419 const struct ctl_path *component; in __register_sysctl_paths() local 1427 for (component = path; component->procname; component++) { in __register_sysctl_paths() 1428 pos = append_path(new_path, pos, component->procname); in __register_sysctl_paths()
|
/linux-4.4.14/Documentation/devicetree/bindings/display/exynos/ |
D | exynos_dp.txt | 44 number of bits per colour component.
|
/linux-4.4.14/drivers/media/usb/au0828/ |
D | au0828-cards.c | 127 int au0828_tuner_callback(void *priv, int component, int command, int arg) in au0828_tuner_callback() argument
|
D | au0828.h | 304 extern int au0828_tuner_callback(void *priv, int component,
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/ |
D | common.txt | 8 to one or more discrete LED component. Since the arrangement of connections
|
/linux-4.4.14/drivers/atm/ |
D | nicstarmac.copyright | 19 * PHY component is expected to be 155 Mbps S/UNI-Lite or IDT 77155;
|
/linux-4.4.14/Documentation/devicetree/bindings/display/ |
D | arm,pl11x.txt | 49 as R0 (first bit of the red component), second value
|
/linux-4.4.14/Documentation/PCI/ |
D | pcieaer-howto.txt | 128 AER aware drivers of PCI Express component need change the device 195 component has an aer driver. If it has, kernel uses the reset_link 196 callback of the aer driver. If the upstream component has no aer driver
|
/linux-4.4.14/drivers/crypto/caam/ |
D | Kconfig | 8 to operate as a DPAA component automatically, depending
|
/linux-4.4.14/drivers/media/dvb-core/ |
D | dvb_frontend.h | 680 int (*callback)(void *adapter_priv, int component, int cmd, int arg);
|
/linux-4.4.14/Documentation/trace/ |
D | intel_th.txt | 26 - Global Trace Hub (GTH), which is a switch and a central component
|
D | coresight.txt | 167 perform base operations related to the components, each component having 187 specific to that component only. "Implementation defined" customisations are
|
/linux-4.4.14/net/l2tp/ |
D | Kconfig | 28 The kernel component handles only L2TP data packets: a
|
/linux-4.4.14/arch/arm64/boot/dts/arm/ |
D | rtsm_ve-motherboard.dtsi | 5 * Motherboard component
|
/linux-4.4.14/fs/reiserfs/ |
D | README | 72 building, by buying from third party OS component suppliers. Leverage 73 the software component development power of the internet. Be the most
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | r8192U.h | 51 #define RT_TRACE(component, x, args...) \ argument 53 if (rt_global_debug_component & component) \
|
D | copying | 163 operating system on which the executable runs, unless that component
|
/linux-4.4.14/Documentation/s390/ |
D | s390dbf.txt | 10 where log records can be stored efficiently in memory, where each component 56 a directory for each registered component, which is named like the 57 corresponding component. The debugfs normally should be mounted to 62 to the debug log. Each component can decide which views should be
|
/linux-4.4.14/Documentation/filesystems/ |
D | path-lookup.txt | 7 with the first component of the pathname (eg. root or cwd) with a known dentry, 8 then finding the child of that dentry, which is named the next component in the 17 thus in every component during path look-up. Since 2.5.10 onwards, fast-walk 19 as many cached path component dentries as possible. This significantly
|
D | ramfs-rootfs-initramfs.txt | 30 an optional component removable via menuconfig, since there would be negligible 178 or by the kernel build) back into its component files:
|
D | seq_file.txt | 8 There are numerous ways for a device driver (or other kernel component) to
|
D | vfs.txt | 486 atomic_open: called on the last component of an open. Using this optional 490 usual 0 or -ve . This method is only called if the last component is 1112 d_lookup: look up a dentry given its parent and path name component
|
D | coda.txt | 2 This is one of the technical documents describing a component of 152 A key component in the Coda Distributed File System is the cache
|
/linux-4.4.14/Documentation/tpm/ |
D | xen-tpmfront.txt | 19 major component of vTPM is implemented as a separate domain, providing secure
|
/linux-4.4.14/sound/soc/intel/skylake/ |
D | skl-pcm.c | 388 link = snd_hdac_ext_bus_get_link(ebus, rtd->codec->component.name); in skl_link_pcm_prepare() 437 link = snd_hdac_ext_bus_get_link(ebus, rtd->codec->component.name); in skl_link_hw_free()
|
D | skl-topology.c | 1241 ret = snd_soc_tplg_component_load(&platform->component, in skl_tplg_init()
|
/linux-4.4.14/drivers/staging/fsl-mc/ |
D | README.txt | 29 A DPAA2 hardware component called the Management Complex (or MC) manages the 361 An Ethernet PHY is an off-chip, board specific component and is managed
|
/linux-4.4.14/Documentation/rapidio/ |
D | rapidio.txt | 105 modular component of the kernel (see details below). 270 For both endpoints and switches the enumerator writes a unique component tag 291 devices. This way each Linux-based component of the RapidIO subsystem has
|
/linux-4.4.14/Documentation/i2c/ |
D | fault-codes | 81 Returned by any component that can't allocate memory when
|
/linux-4.4.14/drivers/media/usb/em28xx/ |
D | em28xx.h | 784 int em28xx_tuner_callback(void *ptr, int component, int command, int arg);
|
D | em28xx-cards.c | 2510 int em28xx_tuner_callback(void *ptr, int component, int command, int arg) in em28xx_tuner_callback() argument
|
/linux-4.4.14/Documentation/device-mapper/ |
D | log-writes.txt | 90 Userspace component
|
/linux-4.4.14/drivers/media/pci/cx88/ |
D | cx88.h | 689 extern int cx88_tuner_callback(void *dev, int component, int command, int arg);
|
D | cx88-cards.c | 3227 int cx88_tuner_callback(void *priv, int component, int command, int arg) in cx88_tuner_callback() argument 3244 if (component != DVB_FRONTEND_COMPONENT_TUNER) in cx88_tuner_callback()
|
/linux-4.4.14/drivers/media/pci/cx23885/ |
D | cx23885.h | 550 extern int cx23885_tuner_callback(void *priv, int component,
|
D | cx23885-cards.c | 1220 int cx23885_tuner_callback(void *priv, int component, int command, int arg) in cx23885_tuner_callback() argument
|
/linux-4.4.14/drivers/media/usb/dvb-usb/ |
D | dib0700_devices.c | 420 static int stk7700ph_xc3028_callback(void *ptr, int component, in stk7700ph_xc3028_callback() argument 2274 …{ .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_ON, .mask = 0… 2275 …{ .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_OFF, .mask = … 2305 …{ .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_ON, .mask = 0… 2306 …{ .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_OFF, .mask = … 3444 static int dib0700_xc5000_tuner_callback(void *priv, int component, in dib0700_xc5000_tuner_callback() argument 3478 static int dib0700_xc4000_tuner_callback(void *priv, int component, in dib0700_xc4000_tuner_callback() argument
|
D | cxusb.c | 807 static int dvico_bluebird_xc2028_callback(void *ptr, int component, in dvico_bluebird_xc2028_callback() argument
|
/linux-4.4.14/Documentation/vm/ |
D | slub.txt | 263 which will keep the system running even if a bad kernel component will 269 No guarantees. The kernel component still needs to be fixed. Performance
|
/linux-4.4.14/drivers/media/usb/dvb-usb-v2/ |
D | rtl28xxu.c | 816 static int rtl2832u_frontend_callback(void *adapter_priv, int component, in rtl2832u_frontend_callback() argument 840 component, cmd, arg); in rtl2832u_frontend_callback() 842 switch (component) { in rtl2832u_frontend_callback()
|
D | af9035.c | 1100 static int af9035_frontend_callback(void *adapter_priv, int component, in af9035_frontend_callback() argument 1107 __func__, component, cmd, arg); in af9035_frontend_callback() 1109 switch (component) { in af9035_frontend_callback()
|
/linux-4.4.14/Documentation/gpio/ |
D | gpio.txt | 115 value (after the appropriate rise time passes), you know some other component is
|
D | gpio-legacy.txt | 435 value (after the appropriate rise time passes), you know some other component
|
/linux-4.4.14/sound/pci/hda/ |
D | hda_codec.c | 805 char component[31]; in snd_hda_codec_new() local 823 sprintf(component, "hdaudioC%dD%d", card->number, codec_addr); in snd_hda_codec_new() 824 err = snd_hdac_device_init(&codec->core, &bus->core, component, in snd_hda_codec_new() 884 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id, in snd_hda_codec_new() 886 snd_component_add(card, component); in snd_hda_codec_new()
|
/linux-4.4.14/drivers/media/pci/saa7134/ |
D | saa7134.h | 768 int saa7134_tuner_callback(void *priv, int component, int command, int arg);
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | stan.S | 337 fsubx %fp0,%fp1 |determine low component of result
|
/linux-4.4.14/Documentation/scsi/ |
D | osd.txt | 18 The main component of OSD in Kernel is the osd-initiator library. Its main
|
D | LICENSE.qla4xxx | 174 operating system on which the executable runs, unless that component
|
D | LICENSE.qla2xxx | 175 operating system on which the executable runs, unless that component
|
D | BusLogic.txt | 175 offending component is removed.
|
/linux-4.4.14/Documentation/development-process/ |
D | 1.Intro | 62 kernel has evolved into a best-of-breed operating system component which 71 use Linux as a component in an integrated product, want Linux to be as
|
/linux-4.4.14/Documentation/blockdev/ |
D | paride.txt | 55 accessing the parallel ports. The second component is a set of 67 The third component of PARIDE is a set of low-level protocol drivers
|
/linux-4.4.14/Documentation/driver-model/ |
D | platform.txt | 119 different system component than the driver.
|
/linux-4.4.14/Documentation/arm/pxa/ |
D | mfp.txt | 125 b) when there is only one possible pin configurations for a component,
|
/linux-4.4.14/drivers/media/usb/cx231xx/ |
D | cx231xx.h | 970 int cx231xx_tuner_callback(void *ptr, int component, int command, int arg);
|
D | cx231xx-cards.c | 920 int cx231xx_tuner_callback(void *ptr, int component, int command, int arg) in cx231xx_tuner_callback() argument
|
/linux-4.4.14/drivers/iommu/ |
D | Kconfig | 99 your system. An IOMMU is a hardware component which provides
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | dcsr.txt | 279 component controller.
|
/linux-4.4.14/Documentation/video4linux/ |
D | vivid.txt | 24 - Support for the alpha color component 554 The 'Alpha Component' control can be used to set the alpha component for 999 The alpha component can be set through the 'Alpha Component' User control 1001 is set, then the alpha component is only used for the color red and set to
|
D | Zoran | 45 1-3 triples as component.
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | tuner-core.c | 266 int (*tuner_callback) (void *dev, int component, int cmd, int arg)) in set_type() argument
|
/linux-4.4.14/Documentation/dvb/ |
D | avermedia.txt | 20 although the component structure of budget DVB-T cards are
|
/linux-4.4.14/Documentation/locking/ |
D | lockdep-design.txt | 183 occur in practice to prove a deadlock: only the simple 'component'
|
/linux-4.4.14/sound/soc/intel/haswell/ |
D | sst-haswell-pcm.c | 1072 priv_data->soc_card = platform->component.card; in hsw_pcm_probe()
|
/linux-4.4.14/Documentation/usb/ |
D | power-management.txt | 33 component is "suspended" it is in a nonfunctional low-power state; it 34 might even be turned off completely. A suspended component can be
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | HD-Audio.txt | 9 HD-audio is the new standard on-board audio component on modern PCs 16 The HD-audio component consists of two parts: the controller chip and
|
/linux-4.4.14/Documentation/security/ |
D | Smack.txt | 21 The kernel component of Smack is implemented as a Linux 312 protected from each other. This scheme has been widely deployed as a component
|
/linux-4.4.14/tools/usb/usbip/ |
D | COPYING | 163 operating system on which the executable runs, unless that component
|
/linux-4.4.14/ |
D | COPYING | 179 operating system on which the executable runs, unless that component
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | README | 377 credentials Although ignored by the cifs kernel component, it is used by 382 guest Although ignored by the kernel component, the mount.cifs
|
D | CHANGES | 141 with prefixpaths longer than one directory (one path component) when
|
/linux-4.4.14/Documentation/kbuild/ |
D | kconfig-language.txt | 389 To restrict a component build to module-only, qualify its config symbol
|
/linux-4.4.14/drivers/regulator/ |
D | Kconfig | 382 from the adjacent phase, allowing the use of small magnetic component.
|
/linux-4.4.14/Documentation/RCU/ |
D | RTFP.txt | 2530 of the most expensive parts of path component lookup, which was the 2531 d_lock on every component lookup. So I'm seeing improvements of 30-50%
|
/linux-4.4.14/drivers/mfd/ |
D | Kconfig | 1151 component is currently supported.
|
/linux-4.4.14/drivers/watchdog/ |
D | Kconfig | 1038 This is the driver for the hardware watchdog component on the
|