Home
last modified time | relevance | path

Searched refs:component (Results 1 – 186 of 186) sorted by relevance

/linux-4.1.27/sound/soc/
Dsoc-io.c28 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 …]
Dsoc-core.c293 static void soc_init_component_debugfs(struct snd_soc_component *component) in soc_init_component_debugfs() argument
295 if (!component->card->debugfs_card_root) in soc_init_component_debugfs()
298 if (component->debugfs_prefix) { in soc_init_component_debugfs()
302 component->debugfs_prefix, component->name); in soc_init_component_debugfs()
304 component->debugfs_root = debugfs_create_dir(name, in soc_init_component_debugfs()
305 component->card->debugfs_card_root); in soc_init_component_debugfs()
309 component->debugfs_root = debugfs_create_dir(component->name, in soc_init_component_debugfs()
310 component->card->debugfs_card_root); in soc_init_component_debugfs()
313 if (!component->debugfs_root) { in soc_init_component_debugfs()
314 dev_warn(component->dev, in soc_init_component_debugfs()
[all …]
Dsoc-ops.c67 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, &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 …]
Dsoc-cache.c29 codec->component.name); in snd_soc_cache_init()
49 codec->component.name); in snd_soc_cache_exit()
Dsoc-ac97.c72 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()
Dsoc-dapm.c492 if (!dapm->component) in soc_dapm_prefix()
494 return dapm->component->name_prefix; in soc_dapm_prefix()
500 if (!dapm->component) in soc_dapm_read()
502 return snd_soc_component_read(dapm->component, reg, value); in soc_dapm_read()
508 if (!dapm->component) in soc_dapm_update_bits()
510 return snd_soc_component_update_bits(dapm->component, reg, in soc_dapm_update_bits()
517 if (!dapm->component) in soc_dapm_test_bits()
519 return snd_soc_component_test_bits(dapm->component, reg, mask, value); in soc_dapm_test_bits()
524 if (dapm->component) in soc_dapm_async_complete()
525 snd_soc_component_async_complete(dapm->component); in soc_dapm_async_complete()
[all …]
Dsoc-compress.c41 platform->component.name); in soc_compr_open()
89 platform->component.name); in soc_compr_open_fe()
705 codec->component.name); in soc_new_compress()
Dsoc-pcm.c65 cpu_dai->component->active++; in snd_soc_runtime_activate()
68 rtd->codec_dais[i]->component->active++; in snd_soc_runtime_activate()
100 cpu_dai->component->active--; in snd_soc_runtime_deactivate()
102 rtd->codec_dais[i]->component->active--; in snd_soc_runtime_deactivate()
125 ignore &= rtd->codec_dais[i]->component->ignore_pmdown_time; in snd_soc_runtime_ignore_pmdown_time()
127 return rtd->cpu_dai->component->ignore_pmdown_time && ignore; in snd_soc_runtime_ignore_pmdown_time()
452 " %s: %d\n", platform->component.name, ret); in soc_pcm_open()
859 platform->component.name, ret); in soc_pcm_hw_params()
/linux-4.1.27/drivers/base/
Dcomponent.c40 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 …]
DMakefile3 obj-y := component.o core.o bus.o dd.o syscore.o \
/linux-4.1.27/drivers/acpi/acpica/
Duttrack.c72 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 …]
Dacutils.h685 u32 component, const char *module, u32 line);
688 u32 component,
693 u32 component, const char *module, u32 line);
699 void acpi_ut_dump_allocations(u32 component, const char *module);
Dnsdump.c136 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component) in acpi_ns_dump_pathname() argument
143 if (!ACPI_IS_DEBUG_ENABLED(level, component)) { in acpi_ns_dump_pathname()
Dacnamesp.h202 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component);
Daclocal.h1128 u32 component; \
/linux-4.1.27/include/acpi/
Dacoutput.h271 #define ACPI_IS_DEBUG_ENABLED(level, component) \ argument
272 ((level & acpi_dbg_level) && (component & acpi_dbg_layer))
302 #define ACPI_DO_DEBUG_PRINT(function, level, line, filename, modulename, component, ...) \ argument
304 if (ACPI_IS_DEBUG_ENABLED (level, component)) \
306 function (level, line, filename, modulename, component, __VA_ARGS__); \
310 #define ACPI_ACTUAL_DEBUG(level, line, filename, modulename, component, ...) \ argument
312 filename, modulename, component, __VA_ARGS__)
314 #define ACPI_ACTUAL_DEBUG_RAW(level, line, filename, modulename, component, ...) \ argument
316 filename, modulename, component, __VA_ARGS__)
446 #define ACPI_IS_DEBUG_ENABLED(level, component) 0 argument
/linux-4.1.27/include/sound/
Dsoc.h548 int snd_soc_add_component_controls(struct snd_soc_component *component,
730 int (*of_xlate_dai_name)(struct snd_soc_component *component,
798 void (*init_debugfs)(struct snd_soc_component *component);
822 struct snd_soc_component component; member
916 struct snd_soc_component component; member
1032 int (*init)(struct snd_soc_component *component);
1155 struct snd_soc_component *component; /* Only valid for AUX dev rtds */ member
1215 struct snd_soc_component *component) in snd_soc_component_to_codec() argument
1217 return container_of(component, struct snd_soc_codec, component); in snd_soc_component_to_codec()
1228 struct snd_soc_component *component) in snd_soc_component_to_platform() argument
[all …]
Dsoc-dai.h272 struct snd_soc_component *component; member
Dcore.h268 int snd_component_add(struct snd_card *card, const char *component);
Dsoc-dapm.h598 struct snd_soc_component *component; /* parent component */ member
/linux-4.1.27/drivers/misc/
Denclosure.c149 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.1.27/Documentation/devicetree/bindings/media/i2c/
Dtvp514x.txt5 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.
Dadv7343.txt5 (CVBS), S-Video (Y-C), and component (YPrPb/RGB) analog outputs in standard
/linux-4.1.27/drivers/char/agp/
DKconfig33 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.1.27/drivers/staging/rtl8192e/
Drtllib_debug.h73 #define RT_TRACE(component, x, args...) \ argument
75 if (rt_global_debug_component & component) \
Dlicense166 the executable runs, unless that component itself accompanies the
/linux-4.1.27/Documentation/devicetree/bindings/clock/ti/
Dcomposite.txt16 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.1.27/sound/soc/codecs/
Dsigmadsp.h36 struct snd_soc_component *component; member
62 struct snd_soc_component *component);
Dts3a227e.h14 int ts3a227e_enable_jack_detect(struct snd_soc_component *component,
Dcx20442.c256 codec->component.card->pop_time = 0; in v253_close()
284 codec->component.card->pop_time = 1; in v253_receive()
375 codec->component.card->pop_time = 0; in cx20442_codec_probe()
Dsigmadsp.c655 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()
Dts3a227e.c224 int ts3a227e_enable_jack_detect(struct snd_soc_component *component, in ts3a227e_enable_jack_detect() argument
227 struct ts3a227e *ts3a227e = snd_soc_component_get_drvdata(component); in ts3a227e_enable_jack_detect()
Dac97.c80 ret = snd_ac97_bus(codec->component.card->snd_card, 0, soc_ac97_ops, in ac97_soc_probe()
Duda134x.c482 struct uda134x_platform_data *pd = codec->component.card->dev->platform_data; in uda134x_soc_probe()
Drt5677.c806 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5677_dsp_vad_get() local
807 struct rt5677_priv *rt5677 = snd_soc_component_get_drvdata(component); in rt5677_dsp_vad_get()
817 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); in rt5677_dsp_vad_put() local
818 struct rt5677_priv *rt5677 = snd_soc_component_get_drvdata(component); in rt5677_dsp_vad_put()
819 struct snd_soc_codec *codec = snd_soc_component_to_codec(component); in rt5677_dsp_vad_put()
Dadau1701.c668 ret = sigmadsp_attach(adau1701->sigmadsp, &codec->component); in adau1701_probe()
Dadau17x1.c829 ret = sigmadsp_attach(adau->sigmadsp, &codec->component); in adau17x1_add_widgets()
Dwm8960.c478 list_for_each_entry(w, &codec->component.card->widgets, list) { in wm8960_add_widgets()
Dwm_adsp.c1377 dsp->card = codec->component.card; in wm_adsp1_event()
1605 dsp->card = codec->component.card; in wm_adsp2_early_event()
Dtlv320dac33.c1408 codec->component.name, codec); in dac33_soc_probe()
/linux-4.1.27/include/linux/
Denclosure.h111 struct enclosure_component component[0]; member
134 int enclosure_add_device(struct enclosure_device *enclosure, int component,
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dcoresight.txt8 sink. Each CoreSight component device should use these properties to describe
22 set(s) of the component.
24 * clocks: the clock associated to this component.
30 * port or ports: The representation of the component's port
Dcci.txt23 Description: Describes a CCI cache coherent Interconnect component
223 This CCI node corresponds to a CCI component whose control registers sits
/linux-4.1.27/sound/soc/omap/
DKconfig21 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
Dams-delta.c304 struct snd_soc_dapm_context *dapm = &codec->component.card->dapm; in cx81801_close()
/linux-4.1.27/fs/nfs/
Dnfs4namespace.c43 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()
Dnfs4xdr.c3550 struct nfs4_string *component = &path->components[path->ncomponents]; in decode_pathname() local
3551 status = decode_opaque_inline(xdr, &component->len, &component->data); in decode_pathname()
3557 component->len, component->data); in decode_pathname()
/linux-4.1.27/drivers/media/pci/ivtv/
Divtv-gpio.h27 int ivtv_reset_tuner_gpio(void *dev, int component, int cmd, int value);
Divtv-gpio.c128 int ivtv_reset_tuner_gpio(void *dev, int component, int cmd, int value) in ivtv_reset_tuner_gpio() argument
/linux-4.1.27/drivers/media/pci/cx18/
Dcx18-gpio.h34 int cx18_reset_tuner_gpio(void *dev, int component, int cmd, int value);
Dcx18-gpio.c338 int cx18_reset_tuner_gpio(void *dev, int component, int cmd, int value) in cx18_reset_tuner_gpio() argument
/linux-4.1.27/drivers/net/wireless/ipw2x00/
DKconfig174 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.1.27/sound/soc/intel/boards/
Dbroadwell.c226 if (!strcmp(codec->component.name, "i2c-INT343A:00")) { in broadwell_suspend()
239 if (!strcmp(codec->component.name, "i2c-INT343A:00")) { in broadwell_resume()
Dcht_bsw_rt5672.c299 if (!strcmp(codec->component.name, "i2c-10EC5670:00")) { in cht_suspend_pre()
313 if (!strcmp(codec->component.name, "i2c-10EC5670:00")) { in cht_resume_post()
/linux-4.1.27/Documentation/acpi/
Ddebug.txt17 When CONFIG_ACPI_DEBUG=y, you can select the component and level of messages
23 debug_layer (component)
146 Show all valid component values:
Dscan_handlers.txt31 component represented by the given device node which can be determined on the
/linux-4.1.27/drivers/usb/mon/
DKconfig8 If you select this option, a component which captures the USB traffic
/linux-4.1.27/drivers/hwtracing/coresight/
DKconfig30 complies with the generic implementation of the component without
49 that complies with the generic implementation of the component without
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dcavium-mdio.txt12 - #size-cells: Must be <0>. MDIO addresses have no size component.
/linux-4.1.27/Documentation/ABI/testing/
Ddebugfs-ideapad8 capability and what graphic component within the machine.
Dsysfs-firmware-ofw25 directory name is the resolved path component name (node
Dsysfs-block111 maximum physical_block_size of the component devices.
Dsysfs-bus-iio1216 x y z w. Here x, y, and z component represents the axis about
1217 which a rotation will occur and w component represents the
/linux-4.1.27/Documentation/fb/
Dpxafb.txt95 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.
Dapi.txt114 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
Dsstfb.txt142 byte -> basically the blue component and some of the green). I'm unable
/linux-4.1.27/drivers/media/usb/tm6000/
Dtm6000-alsa.c422 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()
Dtm6000.h312 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);
Dtm6000-cards.c691 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.1.27/drivers/scsi/
Dses.c439 if (!edev->component[0].scratch) in ses_enclosure_find_by_addr()
443 scomp = edev->component[i].scratch; in ses_enclosure_find_by_addr()
528 ecomp = &edev->component[components++]; in ses_enclosure_data_process()
710 edev->component[i].scratch = scomp + i; in ses_intf_add()
777 kfree(edev->component[0].scratch); in ses_intf_remove_enclosure()
D53c700.scr33 ; This is the magic component for handling scatter-gather. Each of the
D53c700_d.h_shipped36 ; This is the magic component for handling scatter-gather. Each of the
DKconfig331 The userspace component needed to initialize the driver, documentation,
/linux-4.1.27/Documentation/devicetree/bindings/i2c/
Di2c-octeon.txt11 - #size-cells: Must be <0>. I2C addresses have no size component.
Dqcom,i2c-qup.txt18 - #size-cells: Should be <0> as i2c addresses have no size component
/linux-4.1.27/sound/soc/samsung/
Dspeyside.c225 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.1.27/sound/soc/intel/atom/
Dsst-atom-controls.c330 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()
1277 struct snd_card *card = platform->component.card->snd_card; in sst_fill_widget_module_info()
1337 list_for_each_entry(w, &platform->component.card->widgets, list) { in sst_fill_linked_widgets()
1353 list_for_each_entry(w, &platform->component.card->widgets, list) { in sst_map_modules_to_pipe()
1378 snd_soc_component_get_dapm(&platform->component); in sst_dsp_init_v2_dpcm()
Dsst-mfld-platform-pcm.c672 drv->soc_card = platform->component.card; in sst_soc_probe()
/linux-4.1.27/include/media/
Dtuner.h196 int (*tuner_callback) (void *dev, int component, int cmd, int arg);
/linux-4.1.27/Documentation/hwmon/
Dwm831x37 thermistor component.
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Dti,keystone-irq.txt6 analyzing SRCCx bits in IPCARx registers. This is one of the component
/linux-4.1.27/Documentation/sound/alsa/soc/
Doverview.txt53 multiple re-usable component drivers :-
66 decribes and binds the other component drivers together to form an ALSA
Dpops_clicks.txt12 click every time a component power state is changed.
Ddapm.txt43 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
Dmachine.txt5 component drivers (e.g. codecs, platforms and DAIs). It also describes the
DDPCM.txt17 DPCM re-uses all the existing component codec, platform and DAI drivers without
296 component drivers (e.g. codec graph).
/linux-4.1.27/sound/core/
Dinit.c902 int snd_component_add(struct snd_card *card, const char *component) in snd_component_add() argument
905 int len = strlen(component); in snd_component_add()
907 ptr = strstr(card->components, component); in snd_component_add()
918 strcat(card->components, component); in snd_component_add()
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dgpio-dsp-keystone.txt5 This is one of the component used by the IPC mechanism used on Keystone SOCs.
/linux-4.1.27/Documentation/devicetree/bindings/media/
Dti-am437x-vpfe.txt4 The Video Processing Front End (VPFE) is a key component for image capture
/linux-4.1.27/sound/usb/
Dcard.c335 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.1.27/Documentation/devicetree/bindings/media/xilinx/
Dvideo.txt26 width expressed as a number of bits per pixel component. All components must
/linux-4.1.27/drivers/bus/
Darm-ccn.c1207 struct arm_ccn_component *component; in arm_ccn_init_nodes() local
1216 component = &ccn->xp[id]; in arm_ccn_init_nodes()
1220 component = &ccn->node[id]; in arm_ccn_init_nodes()
1226 component = &ccn->node[id]; in arm_ccn_init_nodes()
1230 component->base = base; in arm_ccn_init_nodes()
1231 component->type = type; in arm_ccn_init_nodes()
/linux-4.1.27/drivers/media/dvb-frontends/
Ddibx000_common.h236 u8 component; member
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Dda9063.txt46 The component follows the standard regulator framework and the bindings
Dqcom-rpm.txt4 various Qualcomm platforms. The RPM allows each component in the system to vote
/linux-4.1.27/drivers/uio/
DKconfig20 driver requires a userspace component called cif that handles
101 This driver requires a userspace component that comes with the card
/linux-4.1.27/Documentation/networking/
Daltera_tse.txt7 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.
DLICENSE.qlge173 operating system on which the executable runs, unless that component
DLICENSE.qlcnic173 operating system on which the executable runs, unless that component
Dbonding.txt2125 individual component to pass traffic for any reason). Additionally,
/linux-4.1.27/Documentation/devicetree/bindings/leds/
Dcommon.txt8 to one or more discrete LED component. Since the arrangement of connections
/linux-4.1.27/Documentation/
Dsgi-ioc4.txt37 component). There's not much to say about it other than it hooks
Dunshare.txt228 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.
DIRQ-domain.txt19 interrupt controller (i.e. the component actually fireing the
Dmd.txt221 and if the component drives are large enough.
345 As component devices are added to an md array, they appear in the 'md'
Dxillybus.txt200 Each pipe has a number of attributes which are set when the FPGA component
/linux-4.1.27/Documentation/thermal/
Dexynos_thermal72 b) TMU driver: This component initialises the TMU controller and sets different
/linux-4.1.27/Documentation/devicetree/bindings/video/
Dadi,adv7511.txt19 - adi,input-depth: Number of bits per color component at the input (8, 10 or
Dexynos_dp.txt44 number of bits per colour component.
Darm,pl11x.txt49 as R0 (first bit of the red component), second value
/linux-4.1.27/drivers/mtd/onenand/
DKconfig59 Flash memory array, these two component enables simultaneous program
/linux-4.1.27/fs/ocfs2/
DKconfig31 Cluster Base. It only requires a very small userspace component
/linux-4.1.27/fs/proc/
Dproc_sysctl.c1419 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.1.27/drivers/media/usb/au0828/
Dau0828-cards.c127 int au0828_tuner_callback(void *priv, int component, int command, int arg) in au0828_tuner_callback() argument
Dau0828.h303 extern int au0828_tuner_callback(void *priv, int component,
/linux-4.1.27/drivers/atm/
Dnicstarmac.copyright19 * PHY component is expected to be 155 Mbps S/UNI-Lite or IDT 77155;
/linux-4.1.27/Documentation/PCI/
Dpcieaer-howto.txt128 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.1.27/drivers/crypto/caam/
DKconfig8 to operate as a DPAA component automatically, depending
/linux-4.1.27/drivers/media/dvb-core/
Ddvb_frontend.h426 int (*callback)(void *adapter_priv, int component, int cmd, int arg);
/linux-4.1.27/arch/arm64/boot/dts/arm/
Drtsm_ve-motherboard.dtsi5 * Motherboard component
/linux-4.1.27/net/l2tp/
DKconfig28 The kernel component handles only L2TP data packets: a
/linux-4.1.27/fs/reiserfs/
DREADME72 building, by buying from third party OS component suppliers. Leverage
73 the software component development power of the internet. Be the most
/linux-4.1.27/Documentation/filesystems/
Dpath-lookup.txt7 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
Dramfs-rootfs-initramfs.txt30 an optional component removable via menuconfig, since there would be negligible
178 or by the kernel build) back into its component files:
Dseq_file.txt8 There are numerous ways for a device driver (or other kernel component) to
Dvfs.txt484 atomic_open: called on the last component of an open. Using this optional
488 usual 0 or -ve . This method is only called if the last component is
1105 d_lookup: look up a dentry given its parent and path name component
Dcoda.txt2 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.1.27/Documentation/s390/
Ds390dbf.txt10 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.1.27/Documentation/tpm/
Dxen-tpmfront.txt19 major component of vTPM is implemented as a separate domain, providing secure
/linux-4.1.27/drivers/staging/rtl8192u/
Dr8192U.h84 #define RT_TRACE(component, x, args...) \ argument
86 if (rt_global_debug_component & component) \
Dcopying163 operating system on which the executable runs, unless that component
/linux-4.1.27/Documentation/trace/
Dcoresight.txt167 perform base operations related to the components, each component having
187 specific to that component only. "Implementation defined" customisations are
/linux-4.1.27/Documentation/rapidio/
Drapidio.txt105 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.1.27/Documentation/vm/
Dslub.txt263 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.1.27/drivers/media/usb/dvb-usb-v2/
Drtl28xxu.c760 static int rtl2832u_frontend_callback(void *adapter_priv, int component, in rtl2832u_frontend_callback() argument
784 component, cmd, arg); in rtl2832u_frontend_callback()
786 switch (component) { in rtl2832u_frontend_callback()
Daf9035.c1100 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.1.27/drivers/staging/i2o/
Di2o_proc.c1426 u8 component; in i2o_seq_show_sensors() member
1461 seq_printf(seq, "Component : %d = ", result.component); in i2o_seq_show_sensors()
1462 switch (result.component) { in i2o_seq_show_sensors()
/linux-4.1.27/Documentation/i2c/
Dfault-codes81 Returned by any component that can't allocate memory when
/linux-4.1.27/drivers/media/usb/em28xx/
Dem28xx.h783 int em28xx_tuner_callback(void *ptr, int component, int command, int arg);
Dem28xx-cards.c2510 int em28xx_tuner_callback(void *ptr, int component, int command, int arg) in em28xx_tuner_callback() argument
/linux-4.1.27/Documentation/device-mapper/
Dlog-writes.txt90 Userspace component
/linux-4.1.27/drivers/media/pci/cx88/
Dcx88.h689 extern int cx88_tuner_callback(void *dev, int component, int command, int arg);
Dcx88-cards.c3227 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.1.27/drivers/media/pci/cx23885/
Dcx23885.h549 extern int cx23885_tuner_callback(void *priv, int component,
Dcx23885-cards.c1220 int cx23885_tuner_callback(void *priv, int component, int command, int arg) in cx23885_tuner_callback() argument
/linux-4.1.27/drivers/media/usb/dvb-usb/
Ddib0700_devices.c420 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
Dcxusb.c807 static int dvico_bluebird_xc2028_callback(void *ptr, int component, in dvico_bluebird_xc2028_callback() argument
/linux-4.1.27/Documentation/gpio/
Dgpio.txt115 value (after the appropriate rise time passes), you know some other component is
Dgpio-legacy.txt435 value (after the appropriate rise time passes), you know some other component
/linux-4.1.27/arch/m68k/fpsp040/
Dstan.S337 fsubx %fp0,%fp1 |determine low component of result
/linux-4.1.27/Documentation/scsi/
Dosd.txt18 The main component of OSD in Kernel is the osd-initiator library. Its main
DLICENSE.qla4xxx174 operating system on which the executable runs, unless that component
DLICENSE.qla2xxx175 operating system on which the executable runs, unless that component
DBusLogic.txt175 offending component is removed.
/linux-4.1.27/drivers/media/pci/saa7134/
Dsaa7134.h763 int saa7134_tuner_callback(void *priv, int component, int command, int arg);
Dsaa7134-cards.c7369 int saa7134_tuner_callback(void *priv, int component, int command, int arg) in saa7134_tuner_callback() argument
/linux-4.1.27/Documentation/development-process/
D1.Intro62 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.1.27/sound/pci/hda/
Dhda_codec.c1008 char component[31]; in snd_hda_codec_new() local
1026 sprintf(component, "hdaudioC%dD%d", card->number, codec_addr); in snd_hda_codec_new()
1027 err = snd_hdac_device_init(&codec->core, &bus->core, component, in snd_hda_codec_new()
1087 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id, in snd_hda_codec_new()
1089 snd_component_add(card, component); in snd_hda_codec_new()
/linux-4.1.27/Documentation/blockdev/
Dparide.txt55 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.1.27/drivers/iommu/
DKconfig92 your system. An IOMMU is a hardware component which provides
/linux-4.1.27/Documentation/driver-model/
Dplatform.txt105 different system component than the driver.
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Ddcsr.txt279 component controller.
/linux-4.1.27/Documentation/arm/pxa/
Dmfp.txt125 b) when there is only one possible pin configurations for a component,
/linux-4.1.27/drivers/media/usb/cx231xx/
Dcx231xx.h969 int cx231xx_tuner_callback(void *ptr, int component, int command, int arg);
Dcx231xx-cards.c892 int cx231xx_tuner_callback(void *ptr, int component, int command, int arg) in cx231xx_tuner_callback() argument
/linux-4.1.27/Documentation/video4linux/
Dvivid.txt24 - Support for the alpha color component
554 The 'Alpha Component' control can be used to set the alpha component for
991 The alpha component can be set through the 'Alpha Component' User control
993 is set, then the alpha component is only used for the color red and set to
DZoran45 1-3 triples as component.
/linux-4.1.27/Documentation/dvb/
Davermedia.txt20 although the component structure of budget DVB-T cards are
/linux-4.1.27/drivers/media/v4l2-core/
Dtuner-core.c266 int (*tuner_callback) (void *dev, int component, int cmd, int arg)) in set_type() argument
/linux-4.1.27/Documentation/locking/
Dlockdep-design.txt183 occur in practice to prove a deadlock: only the simple 'component'
/linux-4.1.27/Documentation/kbuild/
Dkconfig-language.txt389 To restrict a component build to module-only, qualify its config symbol
/linux-4.1.27/Documentation/security/
DSmack.txt21 The kernel component of Smack is implemented as a Linux
277 protected from each other. This scheme has been widely deployed as a component
/linux-4.1.27/sound/soc/intel/haswell/
Dsst-haswell-pcm.c1067 priv_data->soc_card = platform->component.card; in hsw_pcm_probe()
/linux-4.1.27/Documentation/sound/alsa/
DHD-Audio.txt9 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.1.27/Documentation/usb/
Dpower-management.txt33 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.1.27/tools/usb/usbip/
DCOPYING163 operating system on which the executable runs, unless that component
/linux-4.1.27/
DCOPYING179 operating system on which the executable runs, unless that component
/linux-4.1.27/Documentation/filesystems/cifs/
DREADME377 credentials Although ignored by the cifs kernel component, it is used by
382 guest Although ignored by the kernel component, the mount.cifs
DCHANGES141 with prefixpaths longer than one directory (one path component) when
/linux-4.1.27/drivers/regulator/
DKconfig372 from the adjacent phase, allowing the use of small magnetic component.
/linux-4.1.27/Documentation/RCU/
DRTFP.txt2530 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.1.27/drivers/mfd/
DKconfig1096 component is currently supported.
/linux-4.1.27/drivers/watchdog/
DKconfig972 This is the driver for the hardware watchdog component on the
/linux-4.1.27/drivers/staging/speakup/
Dspkguide.txt583 Now, suppose we have a situation where the main Speakup component
/linux-4.1.27/arch/m68k/ifpsp060/src/
Dfpsp.S5602 fsub.x %fp0,%fp1 # determine low component of result
Dfplsp.S5927 fsub.x %fp0,%fp1 # determine low component of result