/linux-4.1.27/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 | 293 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 …]
|
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 | 492 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 …]
|
D | soc-compress.c | 41 platform->component.name); in soc_compr_open() 89 platform->component.name); in soc_compr_open_fe() 705 codec->component.name); in soc_new_compress()
|
D | soc-pcm.c | 65 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/ |
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.1.27/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 | 685 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);
|
D | nsdump.c | 136 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()
|
D | acnamesp.h | 202 acpi_ns_dump_pathname(acpi_handle handle, char *msg, u32 level, u32 component);
|
D | aclocal.h | 1128 u32 component; \
|
/linux-4.1.27/include/acpi/ |
D | acoutput.h | 271 #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/ |
D | soc.h | 548 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 …]
|
D | soc-dai.h | 272 struct snd_soc_component *component; member
|
D | core.h | 268 int snd_component_add(struct snd_card *card, const char *component);
|
D | soc-dapm.h | 598 struct snd_soc_component *component; /* parent component */ member
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/drivers/staging/rtl8192e/ |
D | rtllib_debug.h | 73 #define RT_TRACE(component, x, args...) \ argument 75 if (rt_global_debug_component & component) \
|
D | license | 166 the executable runs, unless that component itself accompanies the
|
/linux-4.1.27/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.1.27/sound/soc/codecs/ |
D | sigmadsp.h | 36 struct snd_soc_component *component; member 62 struct snd_soc_component *component);
|
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() 375 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 | 224 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()
|
D | ac97.c | 80 ret = snd_ac97_bus(codec->component.card->snd_card, 0, soc_ac97_ops, in ac97_soc_probe()
|
D | uda134x.c | 482 struct uda134x_platform_data *pd = codec->component.card->dev->platform_data; in uda134x_soc_probe()
|
D | rt5677.c | 806 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()
|
D | adau1701.c | 668 ret = sigmadsp_attach(adau1701->sigmadsp, &codec->component); in adau1701_probe()
|
D | adau17x1.c | 829 ret = sigmadsp_attach(adau->sigmadsp, &codec->component); in adau17x1_add_widgets()
|
D | wm8960.c | 478 list_for_each_entry(w, &codec->component.card->widgets, list) { in wm8960_add_widgets()
|
D | wm_adsp.c | 1377 dsp->card = codec->component.card; in wm_adsp1_event() 1605 dsp->card = codec->component.card; in wm_adsp2_early_event()
|
D | tlv320dac33.c | 1408 codec->component.name, codec); in dac33_soc_probe()
|
/linux-4.1.27/include/linux/ |
D | enclosure.h | 111 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/ |
D | coresight.txt | 8 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
|
D | cci.txt | 23 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/ |
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.1.27/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 | 3550 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/ |
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.1.27/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.1.27/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.1.27/sound/soc/intel/boards/ |
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 | 299 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/ |
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
|
/linux-4.1.27/drivers/usb/mon/ |
D | Kconfig | 8 If you select this option, a component which captures the USB traffic
|
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/net/ |
D | cavium-mdio.txt | 12 - #size-cells: Must be <0>. MDIO addresses have no size component.
|
/linux-4.1.27/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 | sysfs-block | 111 maximum physical_block_size of the component devices.
|
D | sysfs-bus-iio | 1216 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/ |
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.1.27/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.1.27/drivers/scsi/ |
D | ses.c | 439 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()
|
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 | 331 The userspace component needed to initialize the driver, documentation,
|
/linux-4.1.27/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.1.27/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.1.27/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() 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()
|
D | sst-mfld-platform-pcm.c | 672 drv->soc_card = platform->component.card; in sst_soc_probe()
|
/linux-4.1.27/include/media/ |
D | tuner.h | 196 int (*tuner_callback) (void *dev, int component, int cmd, int arg);
|
/linux-4.1.27/Documentation/hwmon/ |
D | wm831x | 37 thermistor component.
|
/linux-4.1.27/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.1.27/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.1.27/sound/core/ |
D | init.c | 902 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/ |
D | gpio-dsp-keystone.txt | 5 This is one of the component used by the IPC mechanism used on Keystone SOCs.
|
/linux-4.1.27/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.1.27/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.1.27/Documentation/devicetree/bindings/media/xilinx/ |
D | video.txt | 26 width expressed as a number of bits per pixel component. All components must
|
/linux-4.1.27/drivers/bus/ |
D | arm-ccn.c | 1207 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/ |
D | dibx000_common.h | 236 u8 component; member
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | da9063.txt | 46 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.1.27/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.1.27/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.qlge | 173 operating system on which the executable runs, unless that component
|
D | LICENSE.qlcnic | 173 operating system on which the executable runs, unless that component
|
D | bonding.txt | 2125 individual component to pass traffic for any reason). Additionally,
|
/linux-4.1.27/Documentation/devicetree/bindings/leds/ |
D | common.txt | 8 to one or more discrete LED component. Since the arrangement of connections
|
/linux-4.1.27/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 | 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.1.27/Documentation/thermal/ |
D | exynos_thermal | 72 b) TMU driver: This component initialises the TMU controller and sets different
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | adi,adv7511.txt | 19 - adi,input-depth: Number of bits per color component at the input (8, 10 or
|
D | exynos_dp.txt | 44 number of bits per colour component.
|
D | arm,pl11x.txt | 49 as R0 (first bit of the red component), second value
|
/linux-4.1.27/drivers/mtd/onenand/ |
D | Kconfig | 59 Flash memory array, these two component enables simultaneous program
|
/linux-4.1.27/fs/ocfs2/ |
D | Kconfig | 31 Cluster Base. It only requires a very small userspace component
|
/linux-4.1.27/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.1.27/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 | 303 extern int au0828_tuner_callback(void *priv, int component,
|
/linux-4.1.27/drivers/atm/ |
D | nicstarmac.copyright | 19 * PHY component is expected to be 155 Mbps S/UNI-Lite or IDT 77155;
|
/linux-4.1.27/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.1.27/drivers/crypto/caam/ |
D | Kconfig | 8 to operate as a DPAA component automatically, depending
|
/linux-4.1.27/drivers/media/dvb-core/ |
D | dvb_frontend.h | 426 int (*callback)(void *adapter_priv, int component, int cmd, int arg);
|
/linux-4.1.27/arch/arm64/boot/dts/arm/ |
D | rtsm_ve-motherboard.dtsi | 5 * Motherboard component
|
/linux-4.1.27/net/l2tp/ |
D | Kconfig | 28 The kernel component handles only L2TP data packets: a
|
/linux-4.1.27/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.1.27/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 | 484 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
|
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.1.27/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.1.27/Documentation/tpm/ |
D | xen-tpmfront.txt | 19 major component of vTPM is implemented as a separate domain, providing secure
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
D | r8192U.h | 84 #define RT_TRACE(component, x, args...) \ argument 86 if (rt_global_debug_component & component) \
|
D | copying | 163 operating system on which the executable runs, unless that component
|
/linux-4.1.27/Documentation/trace/ |
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.1.27/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.1.27/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.1.27/drivers/media/usb/dvb-usb-v2/ |
D | rtl28xxu.c | 760 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()
|
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.1.27/drivers/staging/i2o/ |
D | i2o_proc.c | 1426 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/ |
D | fault-codes | 81 Returned by any component that can't allocate memory when
|
/linux-4.1.27/drivers/media/usb/em28xx/ |
D | em28xx.h | 783 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.1.27/Documentation/device-mapper/ |
D | log-writes.txt | 90 Userspace component
|
/linux-4.1.27/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.1.27/drivers/media/pci/cx23885/ |
D | cx23885.h | 549 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.1.27/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.1.27/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.1.27/arch/m68k/fpsp040/ |
D | stan.S | 337 fsubx %fp0,%fp1 |determine low component of result
|
/linux-4.1.27/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.1.27/drivers/media/pci/saa7134/ |
D | saa7134.h | 763 int saa7134_tuner_callback(void *priv, int component, int command, int arg);
|
D | saa7134-cards.c | 7369 int saa7134_tuner_callback(void *priv, int component, int command, int arg) in saa7134_tuner_callback() argument
|
/linux-4.1.27/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.1.27/sound/pci/hda/ |
D | hda_codec.c | 1008 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/ |
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.1.27/drivers/iommu/ |
D | Kconfig | 92 your system. An IOMMU is a hardware component which provides
|
/linux-4.1.27/Documentation/driver-model/ |
D | platform.txt | 105 different system component than the driver.
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | dcsr.txt | 279 component controller.
|
/linux-4.1.27/Documentation/arm/pxa/ |
D | mfp.txt | 125 b) when there is only one possible pin configurations for a component,
|
/linux-4.1.27/drivers/media/usb/cx231xx/ |
D | cx231xx.h | 969 int cx231xx_tuner_callback(void *ptr, int component, int command, int arg);
|
D | cx231xx-cards.c | 892 int cx231xx_tuner_callback(void *ptr, int component, int command, int arg) in cx231xx_tuner_callback() argument
|
/linux-4.1.27/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 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
|
D | Zoran | 45 1-3 triples as component.
|
/linux-4.1.27/Documentation/dvb/ |
D | avermedia.txt | 20 although the component structure of budget DVB-T cards are
|
/linux-4.1.27/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.1.27/Documentation/locking/ |
D | lockdep-design.txt | 183 occur in practice to prove a deadlock: only the simple 'component'
|
/linux-4.1.27/Documentation/kbuild/ |
D | kconfig-language.txt | 389 To restrict a component build to module-only, qualify its config symbol
|
/linux-4.1.27/Documentation/security/ |
D | Smack.txt | 21 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/ |
D | sst-haswell-pcm.c | 1067 priv_data->soc_card = platform->component.card; in hsw_pcm_probe()
|
/linux-4.1.27/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.1.27/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.1.27/tools/usb/usbip/ |
D | COPYING | 163 operating system on which the executable runs, unless that component
|
/linux-4.1.27/ |
D | COPYING | 179 operating system on which the executable runs, unless that component
|
/linux-4.1.27/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.1.27/drivers/regulator/ |
D | Kconfig | 372 from the adjacent phase, allowing the use of small magnetic component.
|
/linux-4.1.27/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.1.27/drivers/mfd/ |
D | Kconfig | 1096 component is currently supported.
|
/linux-4.1.27/drivers/watchdog/ |
D | Kconfig | 972 This is the driver for the hardware watchdog component on the
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 583 Now, suppose we have a situation where the main Speakup component
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | fpsp.S | 5602 fsub.x %fp0,%fp1 # determine low component of result
|
D | fplsp.S | 5927 fsub.x %fp0,%fp1 # determine low component of result
|