/linux-4.1.27/drivers/spi/ |
D | spi-atmel.c | 273 static bool atmel_spi_is_v2(struct atmel_spi *as) in atmel_spi_is_v2() argument 275 return as->caps.is_spi2; in atmel_spi_is_v2() 298 static void cs_activate(struct atmel_spi *as, struct spi_device *spi) in cs_activate() argument 304 if (atmel_spi_is_v2(as)) { in cs_activate() 305 spi_writel(as, CSR0 + 4 * spi->chip_select, asd->csr); in cs_activate() 309 spi_writel(as, CSR0, asd->csr); in cs_activate() 310 if (as->caps.has_wdrbt) { in cs_activate() 311 spi_writel(as, MR, in cs_activate() 317 spi_writel(as, MR, in cs_activate() 323 mr = spi_readl(as, MR); in cs_activate() [all …]
|
/linux-4.1.27/drivers/net/wireless/ath/ath5k/ |
D | ani.c | 223 ath5k_ani_raise_immunity(struct ath5k_hw *ah, struct ath5k_ani_state *as, in ath5k_ani_raise_immunity() argument 232 if (as->noise_imm_level < ATH5K_ANI_MAX_NOISE_IMM_LVL) { in ath5k_ani_raise_immunity() 233 ath5k_ani_set_noise_immunity_level(ah, as->noise_imm_level + 1); in ath5k_ani_raise_immunity() 239 as->spur_level < ah->ani_state.max_spur_level) { in ath5k_ani_raise_immunity() 240 ath5k_ani_set_spur_immunity_level(ah, as->spur_level + 1); in ath5k_ani_raise_immunity() 246 if (as->firstep_level < ATH5K_ANI_MAX_FIRSTEP_LVL) in ath5k_ani_raise_immunity() 247 ath5k_ani_set_firstep_level(ah, as->firstep_level + 1); in ath5k_ani_raise_immunity() 262 if (ofdm_trigger && as->ofdm_weak_sig) { in ath5k_ani_raise_immunity() 268 if (as->firstep_level < ATH5K_ANI_MAX_FIRSTEP_LVL) { in ath5k_ani_raise_immunity() 269 ath5k_ani_set_firstep_level(ah, as->firstep_level + 1); in ath5k_ani_raise_immunity() [all …]
|
/linux-4.1.27/drivers/char/ |
D | apm-emulation.c | 198 struct apm_user *as; in queue_event() local 201 list_for_each_entry(as, &apm_user_list, list) { in queue_event() 202 if (as->reader) in queue_event() 203 queue_add_event(&as->queue, event); in queue_event() 211 struct apm_user *as = fp->private_data; in apm_read() local 218 if (queue_empty(&as->queue) && fp->f_flags & O_NONBLOCK) in apm_read() 221 wait_event_interruptible(apm_waitqueue, !queue_empty(&as->queue)); in apm_read() 223 while ((i >= sizeof(event)) && !queue_empty(&as->queue)) { in apm_read() 224 event = queue_get_event(&as->queue); in apm_read() 231 if (as->suspend_state == SUSPEND_PENDING && in apm_read() [all …]
|
D | Kconfig | 77 To compile this driver as a module, choose M here: the module 88 OTP pages. This is dangerous by nature as you can only program 90 need it so as to not inadvertently clobber data. 99 box (as opposed to using a serial printer; if the connector at the 108 To compile this driver as a module, choose M here and read 124 If you want kernel messages to be printed out as they occur, you 150 To compile this driver as a module, choose M here: the 164 Also serves as a general-purpose serial device for data 191 It is also possible to say M here to build it as a module (ds1620) 204 This is most useful for applications, as yet unwritten, which [all …]
|
/linux-4.1.27/drivers/iommu/ |
D | tegra-smmu.c | 237 struct tegra_smmu_as *as; in tegra_smmu_domain_alloc() local 244 as = kzalloc(sizeof(*as), GFP_KERNEL); in tegra_smmu_domain_alloc() 245 if (!as) in tegra_smmu_domain_alloc() 248 as->attr = SMMU_PD_READABLE | SMMU_PD_WRITABLE | SMMU_PD_NONSECURE; in tegra_smmu_domain_alloc() 250 as->pd = alloc_page(GFP_KERNEL | __GFP_DMA); in tegra_smmu_domain_alloc() 251 if (!as->pd) { in tegra_smmu_domain_alloc() 252 kfree(as); in tegra_smmu_domain_alloc() 256 as->count = alloc_page(GFP_KERNEL); in tegra_smmu_domain_alloc() 257 if (!as->count) { in tegra_smmu_domain_alloc() 258 __free_page(as->pd); in tegra_smmu_domain_alloc() [all …]
|
/linux-4.1.27/arch/xtensa/include/asm/ |
D | cacheasm.h | 48 .macro __loop_cache_range ar as at insn line_width 51 add \as, \as, \at 53 __loops \ar, \as, \at, \line_width 122 .macro ___flush_invalidate_dcache_range ar as at 124 __loop_cache_range \ar \as \at dhwbi XCHAL_DCACHE_LINEWIDTH 129 .macro ___flush_dcache_range ar as at 131 __loop_cache_range \ar \as \at dhwb XCHAL_DCACHE_LINEWIDTH 136 .macro ___invalidate_dcache_range ar as at 138 __loop_cache_range \ar \as \at dhi XCHAL_DCACHE_LINEWIDTH 143 .macro ___invalidate_icache_range ar as at [all …]
|
D | asmmacro.h | 64 .macro __loops ar, as, at, incr_log2, mask_log2, cond, ncond 68 addi \at, \as, (1 << \incr_log2) - 1 78 extui \at, \as, \incr_log2, \mask_log2 81 srli \at, \as, \incr_log2 92 add \at, \ar, \as 103 .macro __loopt ar, as, at, incr_log2 106 sub \at, \as, \ar 122 .macro __loop as 125 loop \as, 99f 136 .macro __endl ar, as [all …]
|
/linux-4.1.27/arch/x86/kernel/ |
D | apm_32.c | 1164 static int queue_empty(struct apm_user *as) in queue_empty() argument 1166 return as->event_head == as->event_tail; in queue_empty() 1169 static apm_event_t get_queued_event(struct apm_user *as) in get_queued_event() argument 1171 if (++as->event_tail >= APM_MAX_EVENTS) in get_queued_event() 1172 as->event_tail = 0; in get_queued_event() 1173 return as->events[as->event_tail]; in get_queued_event() 1178 struct apm_user *as; in queue_event() local 1183 for (as = user_list; as != NULL; as = as->next) { in queue_event() 1184 if ((as == sender) || (!as->reader)) in queue_event() 1186 if (++as->event_head >= APM_MAX_EVENTS) in queue_event() [all …]
|
/linux-4.1.27/drivers/usb/core/ |
D | devio.c | 276 struct async *as; in alloc_async() local 278 as = kzalloc(sizeof(struct async), GFP_KERNEL); in alloc_async() 279 if (!as) in alloc_async() 281 as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL); in alloc_async() 282 if (!as->urb) { in alloc_async() 283 kfree(as); in alloc_async() 286 return as; in alloc_async() 289 static void free_async(struct async *as) in free_async() argument 293 put_pid(as->pid); in free_async() 294 if (as->cred) in free_async() [all …]
|
/linux-4.1.27/sound/usb/ |
D | stream.c | 82 static void snd_usb_init_substream(struct snd_usb_stream *as, in snd_usb_init_substream() argument 86 struct snd_usb_substream *subs = &as->substream[stream]; in snd_usb_init_substream() 91 subs->stream = as; in snd_usb_init_substream() 93 subs->dev = as->chip->dev; in snd_usb_init_substream() 94 subs->txfr_quirk = as->chip->txfr_quirk; in snd_usb_init_substream() 98 snd_usb_set_pcm_ops(as->pcm, stream); in snd_usb_init_substream() 324 struct snd_usb_stream *as; in snd_usb_add_audio_stream() local 329 list_for_each_entry(as, &chip->pcm_list, list) { in snd_usb_add_audio_stream() 330 if (as->fmt_type != fp->fmt_type) in snd_usb_add_audio_stream() 332 subs = &as->substream[stream]; in snd_usb_add_audio_stream() [all …]
|
/linux-4.1.27/include/linux/ |
D | util_macros.h | 4 #define __find_closest(x, a, as, op) \ argument 6 typeof(as) __fc_i, __fc_as = (as) - 1; \ 26 #define find_closest(x, a, as) __find_closest(x, a, as, <=) argument 38 #define find_closest_descending(x, a, as) __find_closest(x, a, as, >=) argument
|
/linux-4.1.27/Documentation/pcmcia/ |
D | driver-changes.txt | 2 * pcmcia_loop_config() and autoconfiguration (as of 2.6.36) 14 * pcmcia_request_configuration -> pcmcia_enable_device (as of 2.6.36) 16 as it mirrors pcmcia_disable_device(). Configuration settings are now 20 * pcmcia_request_window changes (as of 2.6.36) 27 * pcmcia_request_io changes (as of 2.6.36) 34 * No dev_info_t, no cs_types.h (as of 2.6.36) 36 in PCMCIA device drivers. Also, do not include pcmcia/cs_types.h, as 39 * No dev_node_t (as of 2.6.35) 42 * New IRQ request rules (as of 2.6.35) 53 * no cs_error / CS_CHECK / CONFIG_PCMCIA_DEBUG (as of 2.6.33) [all …]
|
/linux-4.1.27/Documentation/filesystems/ |
D | ufs.txt | 18 default value, supported as read-only 21 supported as read-write 24 supported as read-write 29 supported as read-write 32 supported as read-write 35 supported as read-only 39 supported as read-only 43 supported as read-only 47 supported as read-only
|
D | f2fs.txt | 5 NAND flash memory-based storage devices, such as SSD, eMMC, and SD cards, have 49 the upper index structures such as inode, inode map, and checkpoint block are 50 also updated recursively. This problem is called as wandering tree problem [1], 52 propagation as much as possible. 61 as a cleaning process. 63 The process consists of three operations as follows. 72 amount of valid data to be moved, and move them quickly as well. 82 - Align FS data structures to the operational units in FTL as best efforts 86 - Use a term, “node”, that represents inodes as well as various pointer blocks 123 does not aware of cold files such as media files. [all …]
|
D | gfs2-uevents.txt | 26 has the same environment variables as the ADD uevent. The ONLINE 35 This is used as a signal by gfs_controld that it is then ok for other 44 process or as the result of gfs_controld requesting a specific journal 57 as part of the "withdraw" mechanism. Currently this doesn't give any 75 The LOCKTABLE is a string, as supplied on the mount command 76 line (locktable=) or via fstab. It is used as a filesystem label 77 as well as providing the information for a lock_dlm mount to be
|
/linux-4.1.27/drivers/staging/comedi/ |
D | Kconfig | 50 from multiple devices together as one. 54 To compile this driver as a module, choose M here: the module will be 65 To compile this driver as a module, choose M here: the module will be 76 To compile this driver as a module, choose M here: the module will be 84 To compile this driver as a module, choose M here: the module will be 93 To compile this driver as a module, choose M here: the module will be 115 To compile this driver as a module, choose M here: the module will be 136 To compile this driver as a module, choose M here: the module will be 144 To compile this driver as a module, choose M here: the module will be 167 To compile this driver as a module, choose M here: the module will be [all …]
|
/linux-4.1.27/drivers/input/misc/ |
D | Kconfig | 19 Support the ONKEY of Marvell 88PM860x PMICs as an input device 22 To compile this driver as a module, choose M here: the module 29 Support the ONKEY of Marvell 88PM80x PMICs as an input device 32 To compile this driver as a module, choose M here: the module 42 To compile this driver as a module, choose M here: the module 52 To compile this driver as a module, choose M here: the 62 To compile this driver as a module, choose M here: the 72 To compile this driver as a module, choose M here: the 82 To compile this driver as a module, choose M here: the 93 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/drivers/media/usb/gspca/ |
D | Kconfig | 15 To compile this driver as modules, choose M here: the 31 To compile this driver as a module, choose M here: the 40 To compile this driver as a module, choose M here: the 51 To compile this driver as a module, choose M here: the 61 To compile this driver as a module, choose M here: the 70 To compile this driver as a module, choose M here: the 79 To compile this driver as a module, choose M here: the 88 To compile this driver as a module, choose M here: the 98 To compile this driver as a module, choose M here: the 107 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/Documentation/input/ |
D | gamepad.txt | 40 differently labeled on most devices so we define them as NORTH, 46 Furthermore, many gamepads have a fancy branded button that is used as 64 an alias for BTN_SOUTH/BTN_A. It can be used to identify a gamepad as such. 79 and one analog stick. It reports them as if it were a gamepad with only one 100 If only 2 action-buttons are present, they are reported as BTN_SOUTH and 104 If only 3 action-buttons are present, they are reported as (from left 106 If the buttons are aligned perfectly vertically, they are reported as 110 different formations. If diamond-shaped, they are reported as BTN_NORTH, 117 Some of these are available as digital buttons, some as analog buttons. Some 121 Digital buttons are reported as: [all …]
|
/linux-4.1.27/drivers/pwm/ |
D | Kconfig | 7 in a rectangular pulse signal is used as a means to alter the 18 to configure as well as enable and disable them. 25 continue to work as expected. 41 To compile this driver as a module, choose M here: the module 50 To compile this driver as a module, choose M here: the module 62 To compile this driver as a module, choose M here: the module 74 To compile this driver as a module, choose M here: the module 83 To compile this driver as a module, choose M here: the module 92 To compile this driver as a module, choose M here: the module 101 To compile this driver as a module, choose M here: the module [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | nvidia,tegra20-kbc.txt | 3 can be configured as row or column. The maximum column pin can be 8 10 - nvidia,kbc-row-pins: The KBC pins which are configured as row. This is an 11 array of pin numbers which is used as rows. 12 - nvidia,kbc-col-pins: The KBC pins which are configured as column. This is an 13 array of pin numbers which is used as column. 14 - linux,keymap: The keymap for keys as described in the binding document 26 - linux,fn-keymap: a second keymap, same specification as the 32 - nvidia,wakeup-source: configure keyboard as a wakeup source for suspend/resume 45 nvidia,kbc-row-pins = <0 1 2>; /* pin 0, 1, 2 as rows */ 46 nvidia,kbc-col-pins = <11 12 13>; /* pin 11, 12, 13 as columns */
|
/linux-4.1.27/drivers/ptp/ |
D | Kconfig | 21 This driver adds support for PTP clocks as character 23 also enable at least one clock driver as well. 25 To compile this driver as a module, choose M here: the module 29 tristate "Freescale eTSEC as PTP clock" 34 This driver adds support for using the eTSEC as a PTP 39 To compile this driver as a module, choose M here: the module 43 tristate "Intel IXP46x as PTP clock" 48 This driver adds support for using the IXP46X as a PTP 53 To compile this driver as a module, choose M here: the module 67 This driver adds support for using the DP83640 as a PTP [all …]
|
/linux-4.1.27/net/bridge/netfilter/ |
D | Kconfig | 49 To compile it as a module, choose M here. If unsure, say N. 58 To compile it as a module, choose M here. If unsure, say N. 67 To compile it as a module, choose M here. If unsure, say N. 76 To compile it as a module, choose M here. If unsure, say N. 85 To compile it as a module, choose M here. If unsure, say N. 93 To compile it as a module, choose M here. If unsure, say N. 101 To compile it as a module, choose M here. If unsure, say N. 110 To compile it as a module, choose M here. If unsure, say N. 119 If you want to compile it as a module, say M here and read 127 This value is the same as the one used in the iptables mark match and [all …]
|
/linux-4.1.27/drivers/md/ |
D | dm-flakey.c | 46 static int parse_features(struct dm_arg_set *as, struct flakey_c *fc, in parse_features() argument 61 if (!as->argc) in parse_features() 64 r = dm_read_arg_group(_args, as, &argc, &ti->error); in parse_features() 69 arg_name = dm_shift_arg(as); in parse_features() 93 r = dm_read_arg(_args + 1, as, &fc->corrupt_bio_byte, &ti->error); in parse_features() 101 arg_name = dm_shift_arg(as); in parse_features() 115 r = dm_read_arg(_args + 2, as, &fc->corrupt_bio_value, &ti->error); in parse_features() 123 r = dm_read_arg(_args + 3, as, &fc->corrupt_bio_flags, &ti->error); in parse_features() 165 struct dm_arg_set as; in flakey_ctr() local 169 as.argc = argc; in flakey_ctr() [all …]
|
D | dm-mpath.c | 517 static int parse_path_selector(struct dm_arg_set *as, struct priority_group *pg, in parse_path_selector() argument 528 pst = dm_get_path_selector(dm_shift_arg(as)); in parse_path_selector() 534 r = dm_read_arg_group(_args, as, &ps_argc, &ti->error); in parse_path_selector() 540 r = pst->create(&pg->ps, ps_argc, as->argv); in parse_path_selector() 548 dm_consume_args(as, ps_argc); in parse_path_selector() 553 static struct pgpath *parse_path(struct dm_arg_set *as, struct path_selector *ps, in parse_path() argument 563 if (as->argc < 1) { in parse_path() 572 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table), in parse_path() 634 r = ps->type->add_path(ps, &p->path, as->argc, as->argv, &ti->error); in parse_path() 647 static struct priority_group *parse_priority_group(struct dm_arg_set *as, in parse_priority_group() argument [all …]
|
D | dm-switch.c | 204 static int parse_path(struct dm_arg_set *as, struct dm_target *ti) in parse_path() argument 210 r = dm_get_device(ti, dm_shift_arg(as), dm_table_get_mode(ti->table), in parse_path() 217 if (kstrtoull(dm_shift_arg(as), 10, &start) || start != (sector_t)start) { in parse_path() 261 struct dm_arg_set as; in switch_ctr() local 265 as.argc = argc; in switch_ctr() 266 as.argv = argv; in switch_ctr() 268 r = dm_read_arg(_args, &as, &nr_paths, &ti->error); in switch_ctr() 272 r = dm_read_arg(_args + 1, &as, ®ion_size, &ti->error); in switch_ctr() 276 r = dm_read_arg_group(_args + 2, &as, &nr_optional_args, &ti->error); in switch_ctr() 281 if (as.argc != nr_paths * 2) { in switch_ctr() [all …]
|
/linux-4.1.27/drivers/input/joystick/ |
D | Kconfig | 31 To compile this driver as a module, choose M here: the 41 To compile this driver as a module, choose M here: the 51 To compile this driver as a module, choose M here: the 60 To compile this driver as a module, choose M here: the 70 To compile this driver as a module, choose M here: the 80 To compile this driver as a module, choose M here: the 90 To compile this driver as a module, choose M here: the 100 To compile this driver as a module, choose M here: the 110 To compile this driver as a module, choose M here: the 120 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | Kconfig | 27 To compile this driver as a module, choose M here: the 46 To compile this driver as a module, choose M here: the 59 To compile this driver as a module, choose M here: the 70 To compile this driver as a module, choose M here: the 79 To compile this driver as a module, choose M here: the 90 To compile this driver as a module, choose M here: the 102 To compile this driver as a module, choose M here: the 111 such as AT42QT602240/ATMXT224, connected to your system. 115 To compile this driver as a module, choose M here: the 128 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/drivers/input/keyboard/ |
D | Kconfig | 22 To compile this driver as a module, choose M here: the module will 32 To compile this driver as a module, choose M here: the 42 To compile this driver as a module, choose M here: the 52 To compile this driver as a module, choose M here: the 66 To compile this driver as a module, choose M here: the 84 To compile this driver as a module, choose M here: the 104 built-in keyboard (as opposed to an external keyboard). 107 AT and PS/2 keyboards. These are as follows: 118 in the left-hand column will be interpreted as the corresponding key 122 right-hand column will be interpreted as the key shown in the [all …]
|
/linux-4.1.27/drivers/hwmon/ |
D | Kconfig | 13 sensors and various additional features such as the ability to 22 This support can also be built as a module. If so, the module 52 This driver can also be built as a module. If so, the module 67 This driver can also be built as a module. If so, the module 81 This driver can also be built as a module. If so, the module 91 This driver can also be built as a module. If so, the module 101 This driver can also be built as a module. If so, the module 111 This driver can also be built as a module. If so, the module 122 This driver can also be built as a module. If so, the module 133 This driver can also be built as a module. If so, the module [all …]
|
/linux-4.1.27/drivers/media/i2c/ |
D | Kconfig | 38 To compile this driver as a module, choose M here: the 47 To compile this driver as a module, choose M here: the 56 To compile this driver as a module, choose M here: the 65 To compile this driver as a module, choose M here: the 74 To compile this driver as a module, choose M here: the 83 To compile this driver as a module, choose M here: the 93 To compile this driver as a module, choose M here: the 103 To compile this driver as a module, choose M here: the 112 To compile this driver as a module, choose M here: the 121 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/net/sched/ |
D | Kconfig | 41 can say Y to as many as you like. If unsure, say N now. 59 want to use as leaf disciplines. 61 To compile this code as a module, choose M here: the 75 To compile this code as a module, choose M here: the 84 To compile this code as a module, choose M here: the 98 To compile this code as a module, choose M here: the 107 To compile this code as a module, choose M here: the 116 To compile this code as a module, choose M here: the 127 To compile this code as a module, choose M here: the 138 To compile this code as a module, choose M here: the [all …]
|
/linux-4.1.27/sound/pci/ |
D | Kconfig | 20 To compile this as a module, choose M here: the module 32 To compile this driver as a module, choose M here: the module 46 To compile this driver as a module, choose M here: the module 60 To compile this driver as a module, choose M here: the module 72 To compile this driver as a module, choose M here: the module 83 To compile this driver as a module, choose M here: the module 93 To compile this driver as a module, choose M here: the module 107 To compile this driver as a module, choose M here: the module 120 To compile this driver as a module, choose M here: the module 134 To compile this driver as a module, choose M here: the module [all …]
|
/linux-4.1.27/drivers/staging/speakup/ |
D | Kconfig | 7 This is the Speakup screen reader. Think of it as a 23 Speakup can either be built in or compiled as a module 27 the synthesizer drivers below can only be built as 31 used in conjunction with Speakup. Think of them as 35 The Dectalk pc driver can only be built as a module, and 49 or m to build it as a module. See the configuration 58 or m to build it as a module. See the configuration 66 or m to build it as a module. See the configuration 74 build it as a module. See the configuration help on the 82 or m to build it as a module. See the configuration [all …]
|
/linux-4.1.27/drivers/hwmon/pmbus/ |
D | Kconfig | 12 This driver can also be built as a module. If so, the module will 25 This driver can also be built as a module. If so, the module will 36 This driver can also be built as a module. If so, the module will 46 This driver can also be built as a module. If so, the module will 56 This driver can also be built as a module. If so, the module will 73 This driver can also be built as a module. If so, the module will 83 This driver can also be built as a module. If so, the module will 93 This driver can also be built as a module. If so, the module will 103 This driver can also be built as a module. If so, the module will 114 This driver can also be built as a module. If so, the module will [all …]
|
/linux-4.1.27/drivers/input/tablet/ |
D | Kconfig | 22 (CONFIG_INPUT_EVDEV) as well. 24 To compile this driver as a module, choose M here: the 35 support" (CONFIG_INPUT_EVDEV) as well. 37 To compile this driver as a module, choose M here: the 47 (CONFIG_INPUT_EVDEV) as well. 49 To compile this driver as a module, choose M here: the 60 To compile this driver as a module, choose M here: the 71 (CONFIG_INPUT_EVDEV) as well. 73 To compile this driver as a module, choose M here: the 83 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/drivers/input/serio/ |
D | Kconfig | 11 as well as serial mice, Sun keyboards, some joysticks and 6dof 16 To compile this driver as a module, choose M here: the 39 To compile this driver as a module, choose M here: the 54 To compile this driver as a module, choose M here: the 67 To compile this driver as a module, choose M here: the 85 To compile this driver as a module, choose M here: the 96 To compile this driver as a module, choose M here: the 106 To compile this driver as a module, choose M here: the module will 128 To compile this driver as a module, choose M here: the 149 to use a HIL keyboard as your primary keyboard, you may wish [all …]
|
/linux-4.1.27/fs/afs/ |
D | super.c | 293 struct afs_super_info *as = sb->s_fs_info; in afs_test_super() local 295 return as->volume == as1->volume; in afs_test_super() 310 struct afs_super_info *as = sb->s_fs_info; in afs_fill_super() local 322 sb->s_bdi = &as->volume->bdi; in afs_fill_super() 323 strlcpy(sb->s_id, as->volume->vlocation->vldb.name, sizeof(sb->s_id)); in afs_fill_super() 326 fid.vid = as->volume->vid; in afs_fill_super() 362 struct afs_super_info *as; in afs_mount() local 401 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL); in afs_mount() 402 if (!as) { in afs_mount() 407 as->volume = vol; in afs_mount() [all …]
|
/linux-4.1.27/drivers/clk/qcom/ |
D | Kconfig | 13 Say Y if you want to use peripheral devices such as UART, SPI, 22 Say Y if you want to support multimedia devices such as display, 30 Say Y if you want to use peripheral devices such as UART, SPI, 39 Say Y if you want to use audio devices such as i2s, pcm, 47 Say Y if you want to use peripheral devices such as UART, SPI, 55 Say Y if you want to use devices such as UART, SPI i2c, USB, 63 Say Y if you want to use peripheral devices such as UART, SPI, 72 Say Y if you want to use audio devices such as i2s, pcm, 81 Say Y if you want to support multimedia devices such as display, 89 Say Y if you want to use peripheral devices such as UART, SPI, [all …]
|
/linux-4.1.27/net/netfilter/ipset/ |
D | Kconfig | 11 To compile it as a module, choose M here. If unsure, say N. 34 To compile it as a module, choose M here. If unsure, say N. 43 To compile it as a module, choose M here. If unsure, say N. 52 To compile it as a module, choose M here. If unsure, say N. 62 To compile it as a module, choose M here. If unsure, say N. 71 To compile it as a module, choose M here. If unsure, say N. 80 To compile it as a module, choose M here. If unsure, say N. 90 To compile it as a module, choose M here. If unsure, say N. 100 To compile it as a module, choose M here. If unsure, say N. 109 To compile it as a module, choose M here. If unsure, say N. [all …]
|
/linux-4.1.27/drivers/input/ |
D | Kconfig | 23 To compile this driver as a module, choose M here: the 32 such as Logitech WingMan Force 3D, ThrustMaster FireStorm Dual 38 To compile this driver as a module, choose M here: the 51 To compile this driver as a module, choose M here: the 64 To compile this driver as a module, choose M here: the 77 To compile this driver as a module, choose M here: the 86 Say Y here if you want your mouse to be accessible as char devices 87 13:32+ - /dev/input/mouseX and 13:63 - /dev/input/mice as an 94 To compile this driver as a module, choose M here: the 102 Say Y here if you want your mouse also be accessible as char device [all …]
|
/linux-4.1.27/drivers/char/hw_random/ |
D | Kconfig | 11 To compile this driver as a module, choose M here: the 34 To compile this driver as a module, choose M here: the 47 To compile this driver as a module, choose M here: the 60 To compile this driver as a module, choose M here: the 73 To compile this driver as a module, choose M here: the 86 To compile this driver as a module, choose M here: the 99 To compile this driver as a module, choose M here: the 112 To compile this driver as a module, choose M here: the 125 To compile this driver as a module, choose M here: the 138 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/sound/isa/ |
D | Kconfig | 35 To compile this driver as a module, choose M here: the module 49 To compile this driver as a module, choose M here: the module 62 To compile this driver as a module, choose M here: the module 77 To compile this driver as a module, choose M here: the module 90 To compile this driver as a module, choose M here: the module 103 To compile this driver as a module, choose M here: the module 117 To compile this driver as a module, choose M here: the module 129 To compile this driver as a module, choose M here: the module 142 To compile this driver as a module, choose M here: the module 153 To compile this driver as a module, choose M here: the module [all …]
|
/linux-4.1.27/drivers/rtc/ |
D | Kconfig | 95 interfaces, which "udev" sets up as /dev/rtc0 through 99 can be accessed as /dev/rtc, which is a name 128 This driver can also be built as a module. If so, the module 143 This driver can also be built as a module. If so, the module 153 This driver can also be built as a module. If so, the module 164 This driver can also be built as a module. If so, the module 174 This driver can also be built as a module. If so, the module 184 This driver can also be built as a module. If so, the module 198 registers may add features such as NVRAM, a trickle charger for 202 This driver can also be built as a module. If so, the module [all …]
|
/linux-4.1.27/Documentation/netlabel/ |
D | introduction.txt | 20 engine will handle those tasks as well. Other kernel subsystems should 32 formatting of these NetLabel messages as well as the Generic NETLINK family 33 names can be found in the 'net/netlabel/' directory as comments in the 34 header files as well as in 'include/net/netlabel.h'. 45 'include/net/netlabel.h' header file as well as the 'lsm_interface.txt' file
|
/linux-4.1.27/Documentation/blackfin/ |
D | bfin-gpio-notes.txt | 23 multi-functions. They can be configured as peripheral, or just as GPIO, 33 - Use the pin as peripheral, 38 - Use the pin as GPIO, 41 - Use the pin as GPIO interrupt, 55 - Kernel permit the identical GPIO be requested both as GPIO and GPIO 60 configuring it as IRQ! 63 identical GPIO, one of them use it as GPIO, the other use it as
|
/linux-4.1.27/Documentation/networking/ |
D | framerelay.txt | 3 Data Link Connection Identifier (DLCI) as its hardware address. Usually these 11 The configuration script will ask you how many DLCIs you need, as well as 21 S508 are supported. This driver is currently set up for only FR, but as 23 them as well. 27 to specify the types of boards to be configured as FRADs, as well as perform 32 Additional FRAD device drivers can be added as hardware is available.
|
D | ltpc.txt | 9 configuration dialog. You can also compile it as a module. 18 as the following to your /etc/lilo.conf: 26 If you load the driver as a module, you can pass the parameters "io=", 28 them as options in a configuration file in /etc/modprobe.d/ directory: 34 need to add a line such as: 55 compiled as a module, you will need to refer to it as "dummy0" or some 69 board. Set the switches so as not to conflict with other hardware. 101 Instead, you follow the same procedure as for doing IP in EtherTalk. 110 this, either compile the driver as a module, or pass the parameters 111 for the card to the kernel as described above. [all …]
|
D | xfrm_sync.txt | 10 the processing of the SA as accurate as possible if it has access to it. 15 with as minimal loss at failover time. 16 This way a backup stays as closely uptodate as an active member. 43 A XFRM_MSG_NEWAE will have at least two TLVs (as is 69 message (kernel<->user) as well the cause (config, query or event). 95 This is a timer value in milliseconds which is used as the nagle 106 in order to not change existing applications such as racoon 139 XFRM_MSG_NEWAE is also issued to any listeners as described in iii). 141 ii) kernel->user direction as a response to XFRM_MSG_GETAE 146 iii) kernel->user to report as event if someone sets any values or [all …]
|
D | sctp.txt | 11 Transport Area (TSVWG) working group for the continued evolvement of SCTP as a 19 referred to as the UDP-style API of the Sockets Extensions for SCTP, as 24 -lksctp can be built as statically or as a module. However, be aware that
|
D | PLIP.txt | 14 parallel ports to appear as a IP network interface. 79 mode as compared to IRQ mode as far as the data transfer speed is involved. 90 Alpha, as of this writing). Between two such polls, there are 10^6/HZ usecs. 92 quite possible for the trigger timeout to expire between two such polls, as 129 status inputs, and they are used as four data inputs and a clock (data 130 strobe) input, arranged so that the data input bits appear as contiguous 133 A cable that implements this protocol is available commercially as a 135 two DB-25 male connectors symmetrically connected as follows: 161 ``printer'' (as opposed to ``parallel'') ports or when the machine 162 isn't configured for PLIP, as it will result in output driver [all …]
|
D | udplite.txt | 8 (video, VoIP) over wireless networks, as partly damaged packets can still be 40 uses the same socket type as UDP. In fact, porting from UDP to UDP-Lite is 41 very easy: simply add `IPPROTO_UDPLITE' as the last argument of the socket(2) 84 same manner as before, e.g. UDP_CORK or UDP_ENCAP. 99 For testing purposes, the following can serve as a `mini' header file: 111 To enable debugging messages, the log level need to be set to 8, as most 116 If the sender specifies a value of 0 as coverage length, the module 119 different from 0, the kernel assumes 8 as default value. Finally, 121 length is used instead as coverage length. 147 is meaningless (as in TCP). Packets with a zero checksum field are [all …]
|
/linux-4.1.27/drivers/i2c/busses/ |
D | Kconfig | 20 This driver can also be built as a module. If so, the module 32 This driver can also be built as a module. If so, the module 42 This driver can also be built as a module. If so, the module 54 This driver can also be built as a module. If so, the module 67 This driver can also be built as a module. If so, the module 77 This driver can also be built as a module. If so, the module 87 This driver can also be built as a module. If so, the module 128 This driver can also be built as a module. If so, the module 139 This driver can also be built as a module. If so, the module 149 This driver can also be built as a module. If so, the module will be [all …]
|
/linux-4.1.27/drivers/usb/serial/ |
D | Kconfig | 17 To compile this driver as a module, choose M here: the 27 converter port as the system console (the system console is the 33 (/dev/tty0) will still be used as the system console by default, but 34 you can alter that using a kernel command line option such as 41 port, /dev/ttyUSB0, as system console. 51 support" be compiled as a module for this driver to be used 72 To compile this driver as a module, choose M here: the module 80 To compile this driver as a module, choose M here: the module 89 To compile this driver as a module, choose M here: the 99 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/Documentation/ |
D | SecurityBugs | 3 disclosed as quickly as possible. Please report security bugs to the 23 bug submitter to bug resolution as well as disclosure. We prefer 24 to fully disclose the bug as soon as possible. It is reasonable to 29 bug submitter as well as vendors. However, the kernel security team
|
D | futex-requeue-pi.txt | 8 brevity, this action will be referred to as "requeue_pi" throughout 9 this document. Priority inheritance is abbreviated throughout as 56 would be modified as follows: 89 is necessary for both the requeue code, as well as the waiting code, 92 acquire the rt_mutex as it would open a race window between the 119 task as a waiter on the underlying rt_mutex. It is possible that 120 the lock can be acquired at this stage as well, if so, the next 123 FUTEX_CMP_REQUEUE_PI accepts nr_wake and nr_requeue as arguments, but 125 requeue up to nr_wake + nr_requeue tasks. It will wake only as many 126 tasks as it can acquire the lock for, which in the majority of cases [all …]
|
D | eisa.txt | 7 status as other much more mainstream busses such as PCI or USB. This 14 most EISA drivers are among the oldest Linux drivers so, as you can 28 by the bus code. This can go from something as simple as reserving 44 The eisa_root_register function is used to declare a device as the 46 to this device, as well as some parameters for probing purposes. 90 driver : a generic driver, such as described in 115 when driver is built as a module). 118 encapsulated in a 'struct eisa_device' described as follows : 130 id : EISA id, as read from device. id.driver_data is set from the 162 set the card as disabled. The driver must be able to properly [all …]
|
D | init.txt | 19 required drivers such as storage hardware (such as SCSI or USB!) 20 and filesystem (ext3, jffs2 etc.) are builtin (alternatively as modules, 26 D) e.g. required library dependencies of the init binary such as 35 non-script binary such as /bin/sh and confirm its successful execution. 41 which needs to be made as painless as possible), then submit patch to LKML.
|
D | printk-formats.txt | 53 functionality as the 'S' and 's' specifiers. 78 For printing a phys_addr_t type (and its derivatives, such as 89 Raw buffer as an escaped string: 93 For printing raw buffer as an escaped string. For the following buffer 121 Raw buffer as a hex string: 127 For printing a small buffers (up to 64 bytes long) as a hex string with 180 print a compressed IPv6 address as described by 201 In case of an IPv6 address the compressed IPv6 address as described by 204 case of additional specifiers 'p', 'f' or 's' as suggested by 208 specifiers can be used as well and are ignored in case of an IPv6 [all …]
|
D | logo.txt | 4 and is freely usable as long as you acknowledge Larry as the original
|
/linux-4.1.27/drivers/media/platform/davinci/ |
D | Kconfig | 14 To compile this driver as a module, choose M here. There will 28 To compile this driver as a module, choose M here. There will 39 with decoder modules such as TVP5146 over BT656 or 40 sensor module such as MT9T001 over a raw interface. This 44 To compile this driver as a module, choose M here. There will 55 with decoder modules such as TVP5146 over BT656 or 56 sensor module such as MT9T001 over a raw interface. This 60 To compile this driver as a module, choose M here. There will 73 To compile this driver as a module, choose M here. There will 86 To compile this driver as a module, choose M here. There will
|
/linux-4.1.27/drivers/iio/light/ |
D | Kconfig | 17 This driver can also be built as a module. If so, the module 27 To compile this driver as a module, choose M here: the 37 To compile this driver as a module, choose M here: the 48 To compile this driver as a module, choose M here: 59 To compile this driver as a module, choose M here: 69 To compile this driver as a module, choose M here: the module will 80 To compile this driver as a module, choose M here: 94 To compile this driver as a module, choose M here: the 106 To compile this driver as a module, choose M here: the module will be 120 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/net/ax25/ |
D | Kconfig | 27 carry other protocols such as tcp/ip. To use it, you need a device 29 use a low speed TNC (a Terminal Node Controller acts as a kind of 39 radio as well as information about how to configure an AX.25 port is 47 To compile this driver as a module, choose M here: the 58 If you say Y here, your Linux box will act as a DAMA slave; this is 60 configuration. Linux cannot yet act as a DAMA server. This option 73 If you say Y here, your Linux box will act as a DAMA master; this is 75 configuration. Linux cannot yet act as a DAMA server. This option 87 users as well as information about how to configure an AX.25 port is 94 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-firmware-dmi | 12 cannot ensure that the data as exported to userland is 15 DMI is structured as a large table of entries, where 17 length of the entry, as well as a firmware-provided 33 doesn't matter), they will be represented in sysfs as 45 assigned entry handles as the kernel itself makes no 46 guarantees that handles as exported are unique, and 51 exported as attributes: 56 length : The length of the entry, as presented in the 70 as found in the directory name. It indicates 73 given type. This value is the same as found [all …]
|
D | configfs-usb-gadget-mass-storage | 21 Required if LUN is not marked as removable. 24 is enabled as well as when it was impossible 26 removable - Flag specifying that LUN shall be indicated as 28 cdrom - Flag specifying that LUN shall be reported as
|
D | evm | 8 value as the extended attribute 'security.evm'. 17 should be done as early as possible. Normally this is done 18 in the initramfs, which has already been measured as part
|
D | sysfs-gpio | 13 GPIOs are identified as they are inside the kernel, using integers in 21 /direction ... r/w as: in, out (default low); write: high, low 22 /edge ... r/w as: none, falling, rising, both 24 /base ... (r/o) same as N
|
D | sysfs-class-net | 73 address as their parent device. 108 Indicates the interface flags as a bitmask in hexadecimal. See 117 Indicates/stores an interface alias name as a string. This can 125 Indicates the system-wide interface unique index identifier as a 146 Indicates the interface link mode, as a decimal number. This 167 Indicates the interface network device group, as a decimal 178 Indicates the interface RFC2863 operational state as a string. 189 the NIC, as a string. 197 as a string. 216 as an integer value. Value depend on the type of interface, [all …]
|
D | sysfs-bus-css | 5 Description: Contains the subchannel type, as reported by the hardware. 12 Description: Contains the module alias as reported with uevents. 21 subchannel, as reported by the channel subsystem 30 Description: Contains the PIM/PAM/POM values, as reported by the
|
/linux-4.1.27/drivers/misc/eeprom/ |
D | Kconfig | 17 you configure as a 24c32 (32 kbit) or larger is NOT really a 19 as read-only won't help recover from this. Also, if your chip 27 This driver can also be built as a module. If so, the module 38 This driver can also be built as a module. If so, the module 47 EEPROMs could theoretically be available on other devices as well. 49 This driver can also be built as a module. If so, the module 62 This driver can also be built as a module. If so, the module 70 The driver supports both read as well as write commands. 82 This driver can also be built as a module. If so, the module 109 This driver can also be built as a module. If so, the module
|
/linux-4.1.27/net/l2tp/ |
D | Kconfig | 16 intervening network in a way that is as transparent as 21 connections. L2TP is also used as a VPN protocol, popular 24 L2TPv3 allows other protocols as well as PPP to be carried 33 If you don't need L2TP, say N. To compile all L2TP code as 46 To compile this driver as a module, choose M here. The module 59 packet-oriented data network (e.g., over IP). L2TP, as 84 To compile this driver as a module, choose M here. The module 96 used as a control protocol and for data encapsulation to set 108 To compile this driver as a module, choose M here. The module
|
/linux-4.1.27/drivers/iio/humidity/ |
D | Kconfig | 12 Other sensors should work as well as long as they speak the 22 To compile this driver as a module, choose M here: the module 32 To compile this driver as a module, choose M here: the module
|
/linux-4.1.27/drivers/iio/adc/ |
D | Kconfig | 30 To compile this driver as a module, choose M here: the 42 To compile this driver as a module, choose M here: the 57 To compile this driver as a module, choose M here: the 69 To compile this driver as a module, choose M here: the module will be 81 To compile this driver as a module, choose M here: the 94 To compile this driver as a module, choose M here: the 106 To compile this driver as a module, choose M here: the 136 be used for sampling sensors such as thermal resistors. 144 This driver can also be built as a module. If chosen, the module name 155 This driver can also be built as a module. If so, the module will be [all …]
|
/linux-4.1.27/drivers/iio/dac/ |
D | Kconfig | 16 To compile this driver as a module, choose M here: the 27 To compile this driver as module choose M here: the module will be called 40 To compile this driver as module choose M here: the module will be called 50 To compile this driver as module choose M here: the module will be called 62 To compile this driver as a module, choose M here: the 72 To compile this driver as a module, choose M here: the 82 To compile this driver as a module, choose M here: the 100 To compile this driver as a module, choose M here: the 111 To compile this driver as a module, choose M here: the 121 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/arch/cris/arch-v10/ |
D | Kconfig | 76 set this to same as CONFIG_ETRAX_LED1G (normally 2). 86 set this to same as CONFIG_ETRAX_LED1G (normally 2). 96 set this to same as CONFIG_ETRAX_LED1G (normally 2). 105 set this to same as CONFIG_ETRAX_LED1G (normally 2). 114 set this to same as CONFIG_ETRAX_LED1G (normally 2). 123 set this to same as CONFIG_ETRAX_LED1G (normally 2). 132 set this to same as CONFIG_ETRAX_LED1G (normally 2). 141 set this to same as CONFIG_ETRAX_LED1G (normally 2). 150 set this to same as CONFIG_ETRAX_LED1G (normally 2). 159 set this to same as CONFIG_ETRAX_LED1G (normally 2). [all …]
|
/linux-4.1.27/Documentation/arm64/ |
D | acpi_object_usage.txt | 44 time as ARM-compatible hardware is available, and the specification 85 conditions; it allows one to inject an error into the system as 119 If PSCI is used (as is recommended), make sure that ARM_BOOT_ARCH is 121 PSCI_USE_HVC is set or unset as needed (see table 5-37). 158 x86 only table as of ACPI 5.1; future versions have been adapted for 281 _ADR 6.1.1 Use as needed. 283 _BBN 6.5.5 Use as needed; PCI-specific. 289 it explicit ensures the kernel will set up DMA as 294 _CID 6.1.2 Use as needed. 296 _CLS 6.1.3 Use as needed. [all …]
|
/linux-4.1.27/drivers/iio/pressure/ |
D | Kconfig | 16 To compile this driver as a module, choose M here: the module 30 To compile this driver as a module, choose M here: the module 40 To compile this driver as a module, choose M here: the module 52 To compile this driver as a module, choose M here: the module 61 To compile this driver as a module, choose M here: the module will 70 To compile this driver as a module, choose M here: the module will 79 To compile this driver as a module, choose M here: the module will 93 This driver can also be built as a module. If so, these modules 118 To compile this driver as a module, choose M here: the module
|
/linux-4.1.27/drivers/watchdog/ |
D | Kconfig | 14 on-line as fast as possible after a lock-up. There's both a watchdog 64 To compile this driver as a module, choose M here: the 76 Alternatively say M to compile the driver as a module, 87 This driver can also be built as a module. If so, the module 97 This driver can be built as a module. The module name is da9063_wdt. 114 This driver can also be built as a module. If so the module 140 To compile this driver as a module, choose M here: the 183 driver as a module, which will be called wdt285. 196 NetWinder machines. Alternatively say M to compile the driver as 207 be built as a module by choosing M. The module will [all …]
|
/linux-4.1.27/Documentation/misc-devices/ |
D | spear-pcie-gadget.txt | 24 Its main purpose is to configure selected dual mode PCIe controller as device 25 and then program its various registers to configure it as a particular device 67 to the PCIe host, then host sees this device as 1MB RAM. 72 program vendor id as 0x104a 75 program device id as 0xCD80 78 program BAR0 size as 1MB 84 Program BAR0 Address as DDR (0x2100000). This is the physical address of 87 as BAR0 address then when this device will be connected to a host, it will be 88 visible as UART. 110 if MSI is to be used as interrupt, program no of msi vector needed (say4) [all …]
|
/linux-4.1.27/drivers/usb/storage/ |
D | Kconfig | 23 To compile this driver as a module, choose M here: the 40 If this driver is compiled as a module, it will be named ums-realtek. 54 If this driver is compiled as a module, it will be named ums-datafab. 63 If this driver is compiled as a module, it will be named ums-freecom. 81 If this driver is compiled as a module, it will be named ums-isd200. 104 If this driver is compiled as a module, it will be named ums-usbat. 114 If this driver is compiled as a module, it will be named ums-sddr09. 123 If this driver is compiled as a module, it will be named ums-sddr55. 132 If this driver is compiled as a module, it will be named ums-jumpshot. 144 If this driver is compiled as a module, it will be named ums-alauda. [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | vic.txt | 12 - interrupt-controller : Identifies the node as an interrupt controller 13 - #interrupt-cells : The number of cells to define the interrupts. Must be 1 as 26 configured as wake up source for the system. Order of bits is the same as for 28 configured as a wake up source for the system. If unspecied, defaults to all 29 interrupt sources configurable as wake up sources.
|
/linux-4.1.27/drivers/crypto/caam/ |
D | Kconfig | 6 and Assurance Module (CAAM), also known as the SEC version 4 (SEC4). 8 to operate as a DPAA component automatically, depending 11 To compile this driver as a module, choose M here: the module 24 To compile this driver as a module, choose M here: the module 33 Select size of Job Rings as a power of 2, within the 84 scatterlist crypto API (such as the linux native IPSec 87 To compile this as a module, choose M here: the module 99 To compile this as a module, choose M here: the module 112 To compile this as a module, choose M here: the module
|
/linux-4.1.27/drivers/block/ |
D | Kconfig | 29 That file also contains the location of the Floppy driver FAQ as 30 well as location of the fdutils package used to configure additional 33 To compile this driver as a module, choose M here: the 62 This enables support for using Chip RAM and Zorro II RAM as a 63 ramdisk or as a swap partition. Say Y if you want to include this 66 To compile this driver as a module, choose M here: the 78 You can also build this as a module which will be called gdrom. 93 kernel, or M if you would like to build it as a loadable module. If 95 PARIDE as a module. If you built PARIDE support into your kernel, 97 drivers as loadable modules. If you build this support as a module, [all …]
|
/linux-4.1.27/net/ipv6/netfilter/ |
D | Kconfig | 26 To compile it as a module, choose M here. If unsure, say N. 42 fields such as the source, destination, flowlabel, hop-limit and 80 packet transformations such as the source, destination address and 120 To compile it as a module, choose M here. If unsure, say N. 131 To compile it as a module, choose M here. If unsure, say N. 141 To compile it as a module, choose M here. If unsure, say N. 150 To compile it as a module, choose M here. If unsure, say N. 159 To compile it as a module, choose M here. If unsure, say N. 177 To compile it as a module, choose M here. If unsure, say N. 185 To compile it as a module, choose M here. If unsure, say N. [all …]
|
/linux-4.1.27/drivers/staging/iio/trigger/ |
D | Kconfig | 13 clocks as IIO triggers. 15 To compile this driver as a module, choose M here: the 23 Provides support for using a Blackfin timer as IIO triggers. 26 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/drivers/staging/iio/accel/ |
D | Kconfig | 15 To compile this driver as a module, say M here: the module will 27 To compile this driver as a module, say M here: the module will be 39 To compile this driver as a module, say M here: the module will be 51 To compile this driver as a module, say M here: the module will be 62 To compile this driver as a module, say M here: the module will be 74 To compile this driver as a module, say M here: the module will be 88 To compile this driver as a module, say M here: the module will be 99 To compile this driver as a module, say M here: the module will be
|
/linux-4.1.27/drivers/mtd/devices/ |
D | Kconfig | 14 If this driver is compiled as a module you get the ability to select 17 will use a 1G memory map as its view of the device. As a module, 20 particularly useful on the 2.2 kernels on PPC architectures as there 44 backed-up NVRAM module. The module was originally meant as an NFS 48 If you want to compile this driver as a module ( = code which can be 77 (once) with up to 64 bytes of data, such as a serial number or 88 are supported as well. See the driver source for the current list, 120 registered by bcma as platform devices. This enables driver for 128 present it to the system as a Memory Technology Device. 161 as a module, it is also possible to specify this as a parameter when [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | omap-spi.txt | 9 - ti,pindir-d0-out-d1-in: Select the D0 pin as output and D1 as 10 input. The default is D0 as input and 11 D1 as output. 15 as described in the generic DMA client binding. A tx and rx
|
D | spi-octeon.txt | 7 - #address-cells : <1>, as required by generic SPI binding. 8 - #size-cells : <0>, also as required by generic SPI binding. 10 Child nodes as per the generic SPI binding.
|
D | snps,dw-apb-ssi.txt | 7 - #address-cells : <1>, as required by generic SPI binding. 8 - #size-cells : <0>, also as required by generic SPI binding. 14 Child nodes as per the generic SPI binding.
|
/linux-4.1.27/Documentation/devicetree/bindings/gpio/ |
D | gpio-xilinx.txt | 4 (from 1 to 32 per channel). Every pin can be configured as 13 - gpio-controller : Marks the device node as a GPIO controller. 24 - xlnx,all-inputs-2 : as above but for the second channel 25 - xlnx,dout-default-2 : as above but the second channel 26 - xlnx,gpio2-width : as above but for the second channel 27 - xlnx,tri-default-2 : as above but for the second channel
|
D | spear_spics.txt | 6 released as soon as transfer is over and TxFIFO becomes empty. This is not 10 Chipselects can be controlled by software by turning them as GPIOs. SPEAr 13 the control of this interface as gpio. 17 * compatible: should be defined as "st,spear-spics-gpio" 24 * gpio-controller: Marks the device node as gpio controller
|
D | gpio-sx150x.txt | 20 - gpio-controller: Marks the device as a GPIO controller. 22 - interrupt-controller: Marks the device as a interrupt controller. 24 The GPIO expander can optionally be used as an interrupt controller, in 25 which case it uses the default two cell specifier as described in
|
D | gpio-altera.txt | 10 - gpio-controller : Marks the device node as a GPIO controller. 11 - interrupt-controller: Mark the device node as an interrupt controller 17 used has IRQ enabled as the interrupt type is not software controlled, 18 but hardware synthesized. Required if GPIO is used as an interrupt
|
/linux-4.1.27/net/caif/ |
D | Kconfig | 12 with its modems. It is accessed from user space as sockets (PF_CAIF). 15 MeeGo ) that uses CAIF as transport, if unsure say N. 17 If you select to build it as module then CAIF_NETDEV also needs to be 18 built as modules. You will also need to say yes to any CAIF physical 40 If you select to build it as a built-in then the main CAIF device must 51 If you select to build it as a built-in then the main CAIF device must
|
/linux-4.1.27/drivers/staging/iio/meter/ |
D | Kconfig | 13 To compile this driver as a module, choose M here: the 23 To compile this driver as a module, choose M here: the 35 To compile this driver as a module, choose M here: the 45 To compile this driver as a module, choose M here: the 55 To compile this driver as a module, choose M here: the 65 To compile this driver as a module, choose M here: the 75 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/drivers/iio/trigger/ |
D | Kconfig | 11 Provides support for using an interrupt of any type as an IIO 14 To compile this driver as a module, choose M here: the 22 Provides support for using SYSFS entries as IIO triggers. 25 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | renesas,fsi.txt | 5 "renesas,sh_fsi2" or "renesas,sh_fsi" as 17 - fsib,spdif-connection : same as fsia 18 - fsib,stream-mode-support : same as fsia 19 - fsib,use-internal-clock : same as fsia
|
D | cs42l52.txt | 22 as a differential input. If not present then the MICA input is configured as 26 as a differential input. If not present then the MICB input is configured as
|
/linux-4.1.27/drivers/usb/misc/ |
D | Kconfig | 15 This code is also available as a module ( = code which can be 17 The module will be called audio. If you want to compile it as a 29 To compile this driver as a module, choose M here: the 38 To compile this driver as a module, choose M here. The module 46 To compile this driver as a module, choose M here: the 56 To compile this driver as a module, choose M here: the 65 This code is also available as a module ( = code which can be 67 The module will be called legousbtower. If you want to compile it as 79 To compile this driver as a module, choose M here: the 88 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/Documentation/timers/ |
D | timekeeping.txt | 16 on this timeline, providing facilities such as high-resolution timers. 31 It will ideally NEVER stop ticking as long as the system is running. It 34 The clock source shall have as high resolution as possible, and the frequency 35 shall be as stable and correct as possible as compared to a real-world wall 54 into a nanosecond value as an unsigned long long (unsigned 64 bit) number. 56 mathematical sense is not desirable: instead the number is taken as close as 63 to aid in providing these mult and shift values, such as 67 factors using the frequency of the clock source as the only input. 94 fire interrupts, so as to trigger events on the system timeline. On an SMP 114 implementation is not provided, the system jiffy counter will be used as [all …]
|
/linux-4.1.27/drivers/s390/net/ |
D | Kconfig | 11 To compile as a module, choose M. The module name is lcs. 25 To compile as a module, choose M. The module name is ctcm. 38 running on the other VM guest. To compile as a module, choose M. 51 prompt "Deliver IUCV special messages as uevents (VM only)" 54 Select this option to deliver CP special messages (SMSGs) as 58 To compile as a module, choose M. The module name is "smsgiucv_app". 72 To compile this driver as a module, choose M. 81 To compile as a module, choose M. The module name is qeth_l2. 90 To compile as a module choose M. The module name is qeth_l3.
|
/linux-4.1.27/drivers/staging/iio/adc/ |
D | Kconfig | 15 To compile this driver as a module, choose M here: the 25 To compile this driver as a module, choose M here: the 36 To compile this driver as a module, choose M here: the 49 To compile this driver as a module, choose M here: the 69 To compile this driver as a module, choose M here: the 79 To compile this driver as a module, choose M here: the 88 LPC32XX SoC. Note that this feature uses the same hardware as the 105 To compile this driver as a module, choose M here: the 116 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/drivers/char/tpm/ |
D | Kconfig | 17 compile this driver as a module, choose M here; the module 34 within Linux. To compile this driver as a module, choose M here; 43 To compile this driver as a module, choose M here; the module will 54 To compile this driver as a module, choose M here; the module 64 To compile this driver as a module, choose M here; the module 73 compile this driver as a module, choose M here; the module 82 as a module, choose M here; the module will be called tpm_atmel. 91 To compile this driver as a module, choose M here; the module 102 as a module, choose M here; the module will be called tpm_ibmvtpm. 113 To compile this driver as a module, choose M here; the module [all …]
|
/linux-4.1.27/fs/cramfs/ |
D | README | 7 a given directory are contiguous, as this is used by readdir). 25 The order of inode traversal is described as "width-first" (not to be 28 same order as `ls -AUR' (but without the /^\..*:$/ directory header 29 lines); put another way, the same order as `find -type d -exec 48 same as the start of the (i+1)'th <block> if there is one). The first 53 tree, i.e. the same order as `find -size +0 \( -type f -o -type l \) 96 Currently, mkcramfs #define's PAGE_CACHE_SIZE as 4096 and uses that 98 turn is defined as PAGE_SIZE (which can be as large as 32KB on arm). 119 etc. macros as used by ext2fs. We don't need to swab the compressed 138 value don't get as good compression as they can. [all …]
|
/linux-4.1.27/drivers/net/ppp/ |
D | Kconfig | 15 To use PPP, you need an additional program called pppd as described 22 asynchronous lines, such as regular analog phone lines, and 32 compile it as a module. To compile this driver as a module, choose M 45 method as well for this to be useful. Even if they don't support it, 52 Note that the BSD compression code will always be compiled as a 66 Deflate compression method as well for this to be useful. Even if 69 To compile this driver as a module, choose M here. 76 PPP interfaces. This allows you to control which packets count as 92 Support for the MPPE Encryption protocol, as employed by the 106 This has to be supported at the other end as well and you need a [all …]
|
/linux-4.1.27/drivers/mcb/ |
D | Kconfig | 16 If build as a module, the module is called mcb.ko 26 FPGAs as well as CompactPCI attached MCB FPGAs are supported with 29 If build as a module, the module is called mcb-pci.ko
|
/linux-4.1.27/drivers/memstick/host/ |
D | Kconfig | 16 probably also need appropriate card reader host adapter, such as 20 To compile this driver as a module, choose M here: the 31 To compile this driver as a module, choose M here: the 43 To compile this driver as a module, choose M here: the module will 53 To compile this driver as a module, choose M here: the module will 63 To compile this driver as a module, choose M here: the module will
|
/linux-4.1.27/sound/oss/dmasound/ |
D | Kconfig | 10 This driver is also available as a module ( = code which can be 12 want). If you want to compile it as a module, say M here and read 24 This driver is also available as a module ( = code which can be 26 want). If you want to compile it as a module, say M here and read 38 This driver is also available as a module ( = code which can be 40 want). If you want to compile it as a module, say M here and read
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | ring.txt | 3 This document is intended as a general overview of the functionality 19 is enabled or disabled (along with enabling triggering etc. as appropriate). 23 as much buffer functionality as possible. Note almost all of these 36 as much data as requested.
|
/linux-4.1.27/drivers/net/ethernet/cirrus/ |
D | Kconfig | 28 <http://www.tldp.org/docs.html#howto> as well as 31 To compile this driver as a module, choose M here. The module 39 Say Y to compile the cs89x0 driver as a platform driver. This 41 such as the iMX21ADS. 62 To compile this driver as a module, choose M here. This module will
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm83 | 21 The LM83 is a digital temperature sensor. It senses its own temperature as 22 well as the temperature of up to three external diodes. The LM82 is 24 Both are compatible with many other devices such as the LM84 and all 34 contact us. Note that the LM90 can easily be misdetected as a LM83. 54 sensors. This means that temperature-only chips are usually used as 55 secondary chips coupled with another chip such as an IT8705F or similar 61 chip such as the LM83. The only case where using an LM83 would make 62 sense is on SMP systems, such as the above-mentioned Iwill MPX2, 80 all four sensors. There is no hysteresis mechanism as found on most
|
/linux-4.1.27/drivers/auxdisplay/ |
D | Kconfig | 28 parport, you will be able to compile this as a module (M) 29 and built-in as well (Y). 31 To compile this as a module, choose M here: 55 If you compile this as a module, you can still override this 70 If you compile this as a module, you can still override this 96 To compile this as a module, choose M here: 114 You can freeze the computer, or the LCD maybe can't draw as fast as you 119 If you compile this as a module, you can still override this
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/ |
D | Kconfig | 23 If you choose to build it as a module, it will be called rtl8192ce 34 If you choose to build it as a module, it will be called rtl8192se 45 If you choose to build it as a module, it will be called rtl8192de 58 If you choose to build it as a module, it will be called rtl8723ae 71 If you choose to build it as a module, it will be called rtl8723be 82 If you choose to build it as a module, it will be called rtl8188ee 94 If you choose to build it as a module, it will be called rtl8192ee 106 If you choose to build it as a module, it will be called rtl8821ae 118 If you choose to build it as a module, it will be called rtl8192cu
|
/linux-4.1.27/drivers/misc/ |
D | Kconfig | 31 This driver can also be built as a module. If so, the module 40 To compile this driver as a module, choose M here: the 51 To compile this driver as a module, choose M here: the 72 may be used as a clock event device supporting oneshot mode 84 TC can be used for other purposes, such as PWM generation and 106 service processor board as a regular serial port. To make use of 159 host adapter, such as 'TI Flash Media PCI74xx/PCI76xx host adapter 166 To compile this driver as a module, choose M here: the module will 177 flash card format drivers, as outlined in the TIFM_CORE Help. 179 To compile this driver as a module, choose M here: the module will [all …]
|
/linux-4.1.27/net/netfilter/ |
D | Kconfig | 47 To compile it as a module, choose M here. If unsure, say N. 84 connections using the same identity, as long as they are 157 If you want to compile it as a module, say M here and read 168 To compile it as a module, choose M here. If unsure, say N. 183 To compile it as a module, choose M here. If unsure, say N. 197 To compile it as a module, choose M here. If unsure, say N. 217 To compile it as a module, choose M here. If unsure, say N. 232 To compile it as a module, choose M here. If unsure, say N. 241 NetBIOS name service requests are sent as broadcast messages from an 254 To compile it as a module, choose M here. If unsure, say N. [all …]
|
/linux-4.1.27/drivers/net/ethernet/sun/ |
D | Kconfig | 27 systems and as an option on older Sbus systems. This driver supports 31 To compile this driver as a module, choose M here: the module 39 This driver supports the "be" interface available as an Sbus option. 42 To compile this driver as a module, choose M here: the module 50 This driver supports the "qe" 10baseT Ethernet device, available as 51 an Sbus option. Note that this is not the same as Quad FastEthernet 54 To compile this driver as a module, choose M here: the module
|
/linux-4.1.27/Documentation/gpio/ |
D | gpio-legacy.txt | 20 non-dedicated pin can be configured as a GPIO; and most chips have at least 36 of pins configured as "output", which is very useful in such "wire-OR" 40 - Inputs can often be used as IRQ signals, often edge triggered but 41 sometimes level triggered. Such IRQs may be configurable as system 44 - Usually a GPIO will be configurable as either input or output, as needed 67 One platform might implement it as simple inline functions accessing chip 71 in this document, but drivers acting as clients to the GPIO interface must 78 GPIO calls are available, either as "real code" or as optimized-away stubs, 93 reserves "negative" numbers for other purposes like marking signals as 95 touch the underlying hardware treats these integers as opaque cookies. [all …]
|
D | sysfs.txt | 61 "direction" ... reads as either "in" or "out". This value may 62 normally be written. Writing as "out" defaults to 63 initializing the value as low. To ensure glitch free 65 configure the GPIO as an output with that initial value. 72 "value" ... reads as either 0 (low) or 1 (high). If the GPIO 73 is configured as an output, this value may be written; 74 any nonzero value is treated as high. 76 If the pin can be configured as interrupt-generating interrupt 86 "edge" ... reads as either "none", "rising", "falling", or 90 This file exists only if the pin can be configured as an [all …]
|
/linux-4.1.27/net/netlabel/ |
D | Kconfig | 11 protocols such as CIPSO and RIPSO. For more information see 12 Documentation/netlabel as well as the NetLabel SourceForge project
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-driver-usb-usbtmc | 6 These files show the various USB TMC capabilities as described 20 These files show the various USB TMC capabilities as described 35 device as described by the document, "Universal Serial Bus Test 37 (USBTMC) Revision 1.0" as published by the USB-IF. 50 Measurement Class Specification (USBTMC) Revision 1.0" as 62 (USBTMC) Revision 1.0" as published by the USB-IF.
|
/linux-4.1.27/drivers/net/team/ |
D | Kconfig | 12 To compile this driver as a module, choose M here: the module 25 To compile this team mode as a module, choose M here: the module 37 To compile this team mode as a module, choose M here: the module 49 To compile this team mode as a module, choose M here: the module 62 To compile this team mode as a module, choose M here: the module 73 To compile this team mode as a module, choose M here: the module
|
/linux-4.1.27/drivers/bluetooth/ |
D | Kconfig | 22 kernel or say M to compile it as module (btusb). 44 kernel or say M to compile it as module (btsdio). 57 kernel or say M to compile it as module (hci_uart). 148 kernel or say M to compile it as module (bcm203x). 159 kernel or say M to compile it as module (bpa10x). 172 kernel or say M to compile it as module (bfusb). 185 kernel or say M to compile it as module (dtl1_cs). 199 kernel or say M to compile it as module (bt3c_cs). 212 kernel or say M to compile it as module (bluecard_cs). 228 kernel or say M to compile it as module (btuart_cs). [all …]
|
/linux-4.1.27/drivers/net/wireless/ |
D | Kconfig | 32 To compile this driver as a module, choose M here: the module will be 65 - with or without encryption) as well as card before the Cisco 72 The driver can be compiled as a module and will be named "airo". 127 802.11 wireless cards. This driver is the same as the Aironet 130 - with or without encryption) as well as card before the Cisco 132 supports OEM of Cisco such as the DELL TrueMobile 4800 and Xircom 159 p54pci supports FullMAC PCI/Cardbus devices as well. 167 When built as module you get the module prism54 179 This driver makes the adapter appear as a normal Ethernet interface, 185 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/drivers/staging/nvec/ |
D | Kconfig | 9 To compile this driver as a module, say M here: the module will be 19 To compile this driver as a module, say M here: the module will be 29 To compile this driver as a module, say M here: the module will be 40 To compile this driver as a module, say M here: the module will be 51 To compile this driver as a module, say M here: the module will be
|
/linux-4.1.27/drivers/usb/misc/sisusbvga/ |
D | Kconfig | 13 To compile this driver as a module, choose M here; the module will be 30 the first and last consoles (starting at 1) as driver parameters. 32 For example, if the driver is compiled as a module: 37 the "options" keyword, such as eg. 42 must be given in the kernel command like, such as
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | qcom,apq8084-pinctrl.txt | 24 Definition: identifies this node as an interrupt controller 29 Definition: must be 2. Specifying the pin number and flags, as defined 35 Definition: identifies this node as a gpio controller 40 Definition: must be 2. Specifying the pin number and flags, as defined 50 The pin configuration nodes act as a container for an arbitrary number of 54 parameters, such as pull-up, drive strength, etc. 69 The following generic properties as defined in pinctrl-bindings.txt are valid 117 Definition: The specified pins should be configued as no pull. 122 Definition: The specified pins should be configued as pull down. 127 Definition: The specified pins should be configued as pull up.
|
D | qcom,msm8960-pinctrl.txt | 24 Definition: identifies this node as an interrupt controller 29 Definition: must be 2. Specifying the pin number and flags, as defined 35 Definition: identifies this node as a gpio controller 40 Definition: must be 2. Specifying the pin number and flags, as defined 50 The pin configuration nodes act as a container for an arbitrary number of 54 parameters, such as pull-up, drive strength, etc. 69 The following generic properties as defined in pinctrl-bindings.txt are valid 119 Definition: The specified pins should be configued as no pull. 124 Definition: The specified pins should be configued as pull down. 129 Definition: The specified pins should be configued as pull up.
|
D | qcom,msm8916-pinctrl.txt | 24 Definition: identifies this node as an interrupt controller 29 Definition: must be 2. Specifying the pin number and flags, as defined 35 Definition: identifies this node as a gpio controller 40 Definition: must be 2. Specifying the pin number and flags, as defined 50 The pin configuration nodes act as a container for an arbitrary number of 54 parameters, such as pull-up, drive strength, etc. 69 The following generic properties as defined in pinctrl-bindings.txt are valid 125 Definition: The specified pins should be configued as no pull. 130 Definition: The specified pins should be configued as pull down. 135 Definition: The specified pins should be configued as pull up.
|
D | pinctrl-mt65xx.txt | 11 - gpio-controller : Marks the device node as a gpio controller. 13 binding is used, the amount of cells must be specified as 2. See the below 23 - Flags: bit field of flags, as defined in <dt-bindings/gpio/gpio.h>. 28 - interrupt-controller: Marks the device node as an interrupt controller 49 as macros in boot/dts/<soc>-pinfunc.h directly. 57 resistors available, but for user, it's only need to set R1R0 as 00, 01, 10 or 11. 59 Some macros have been defined for this usage, such as MTK_PUPD_SET_R1R0_00. 62 When config drive-strength, it can support some arguments, such as
|
D | rockchip,pinctrl.txt | 6 muxing options with option 0 being the use as a GPIO. 16 settings such as pull-up, etc. 19 defined as gpio sub-nodes of the pinmux controller. 30 as some SoCs carry parts of the iomux controller registers there. 44 - gpio-controller: identifies the node as a gpio controller and pin bank. 46 binding is used, the amount of cells must be specified as 2. See generic 48 - interrupt-controller: identifies the controller node as interrupt-parent. 63 to use, as described in pinctrl-bindings.txt in this directory.
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig.devices | 11 bool "Use power LED as a heartbeat" if AMIGA || APOLLO || ATARI || Q40 14 Use the power-on LED on your machine as a load meter. The exact 31 This option enables support for ARAnyM native features, such as 32 access to a disk image as /dev/hda. 94 To compile this driver as a module, choose M here. 103 To compile this driver as a module, choose M here. 123 If you say Y here, it will be possible to use a serial port as the 130 (/dev/tty0) will still be used as the system console by default, but 131 you can alter that using a kernel command line option such as 137 kernel will automatically use the first serial line, /dev/ttyS0, as
|
/linux-4.1.27/drivers/firewire/ |
D | Kconfig | 18 To compile this driver as a module, say M here: the module will be 29 To compile this driver as a module, say M here: The module will be 41 To compile this driver as a module, say M here: The module will be 52 with other implementations of RFC 2734/3146 as found on several 55 To compile this driver as a module, say M here: The module will be 67 link layer controller TSB12LV21/A/B as a low-budget bus analyzer. 77 To compile this driver as a module, say M here: The module will be
|
/linux-4.1.27/drivers/media/radio/ |
D | Kconfig | 44 To compile this driver as a module, choose M here: the 56 To compile this driver as a module, choose M here: the 68 To compile this driver as a module, choose M here: the 77 found as Gemtek PCI FM. 84 To compile this driver as a module, choose M here: the 102 To compile this driver as a module, choose M here: the 119 To compile this driver as a module, choose M here: the 129 To compile this driver as a module, choose M here: the 143 To compile this driver as a module, choose M here: the 155 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/arch/mips/loongson1/ |
D | Kconfig | 42 Use PWM Timer 0 as the default clockevent/clocksourcer. 47 Use PWM Timer 1 as the default clockevent/clocksourcer. 52 Use PWM Timer 2 as the default clockevent/clocksourcer. 57 Use PWM Timer 3 as the default clockevent/clocksourcer.
|
/linux-4.1.27/fs/coda/ |
D | Kconfig | 7 with regular Unix commands as if they were sitting on your hard 13 If you say Y here, your Linux box will be able to act as a Coda 14 *client*. You will need user level code as well, both for the 20 To compile the coda client support as a module, choose M here: the
|
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/ |
D | ti,omap4-wugen-mpu | 4 routes interrupts to the GIC, and also serves as a wakeup source. It 5 is also referred to as "WUGEN-MPU", hence the name of the binding. 12 - interrupt-controller : Identifies the node as an interrupt controller. 22 - Only SPIs can use the WUGEN as an interrupt parent. SGIs and PPIs
|
D | marvell,armada-370-xp-mpic.txt | 6 - interrupt-controller: Identifies the node as an interrupt controller. 7 - msi-controller: Identifies the node as an PCI Message Signaled 22 connected as a slave to another interrupt controller. This is 24 connected as a slave to the Cortex-A9 GIC. The provided interrupt
|
D | nvidia,tegra-ictlr.txt | 4 interrupts to the GIC, and also serves as a wakeup source. It is also 5 referred to as "ictlr", hence the name of the binding. 19 - interrupt-controller : Identifies the node as an interrupt controller. 29 - Only SPIs can use the ictlr as an interrupt parent. SGIs and PPIs
|
/linux-4.1.27/drivers/staging/lustre/lnet/ |
D | Kconfig | 20 as a module, choose M here: the module will be called lnet_selftest. 22 To compile this as a kernel modules, choose M here and it will be 34 This option allows the LNET users to use infiniband as an 37 To compile this as a kernel module, choose M here and it will be
|
/linux-4.1.27/Documentation/arm/Samsung/ |
D | GPIO.txt | 22 The gpio implementation uses gpiolib as much as possible, only providing 24 as pin special-function or pull resistor control. 34 implementation to configure pins as necessary.
|
/linux-4.1.27/drivers/iio/accel/ |
D | Kconfig | 17 To compile this driver as a module, choose M here: the 46 To compile this driver as a module, choose M here: the 61 This driver can also be built as a module. If so, these modules 86 To compile this driver as a module, choose M here: the module 98 To compile this driver as a module, choose M here: the module 111 To compile this driver as a module, choose M here: the module will 126 To compile this driver as a module, choose M here: the module 137 To compile this driver as a module, choose M here: the module
|
/linux-4.1.27/Documentation/leds/ |
D | leds-class.txt | 40 and the aim is to keep a small amount of code giving as much functionality 41 as possible. Please keep this in mind when suggesting enhancements. 51 There have been calls for LED properties such as colour to be exported as 52 individual led class attributes. As a solution which doesn't incur as much 64 however, it is better to use the API function led_blink_set(), as it 68 as that will not just set the LED brightness but also stop any software 84 The LED Trigger core cannot be a module as the simple trigger functions 85 would cause nightmare dependency issues. I see this as a minor issue
|
/linux-4.1.27/drivers/pci/hotplug/ |
D | Kconfig | 24 To compile this driver as a module, choose M here: the 46 To compile this driver as a module, choose M here: the 67 To compile this driver as a module, choose M here: the 87 To compile this driver as a module, choose M here: the 97 hotswap signal as a bit in a system register that can be read through 100 To compile this driver as a module, choose M here: the 111 To compile this driver as a module, choose M here: the 122 To compile this driver as a module, choose M here: the 134 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/drivers/media/pci/ivtv/ |
D | Kconfig | 25 This is used in devices such as the Hauppauge PVR-150/250/350/500 28 To compile this driver as a module, choose M here: the 36 This driver provides an ALSA interface as another method for user 44 To compile this driver as a module, choose M here: the 60 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/drivers/media/rc/ |
D | Kconfig | 150 To compile this driver as a module, choose M here: the module will be 164 To compile this driver as a module, choose M here: the 172 To compile this driver as a module, choose M here: the module will be 186 To compile this driver as a module, choose M here: the 198 To compile this driver as a module, choose M here: the 211 To compile this driver as a module, choose M here: the 223 To compile this driver as a module, choose M here: the 234 To compile this driver as a module, choose M here: the 244 found in the ASRock ION 330HT, as well as assorted Intel 247 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/drivers/infiniband/hw/ipath/ |
D | Kconfig | 9 as IP-over-InfiniBand as well as with userspace applications
|
/linux-4.1.27/Documentation/laptops/ |
D | toshiba_haps.txt | 27 userspace tools or daemons act accordingly, as well as providing a sysfs 44 any "protection" as well as failing during the evaluation of the _STA method 71 level, as well as set the desired protection level, the
|
/linux-4.1.27/drivers/mtd/onenand/ |
D | Kconfig | 44 One Block of the NAND Flash Array memory is reserved as 46 Also, 1st Block of NAND Flash Array can be used as OTP. 49 operations as any other NAND Flash Array memory block. 60 of 4KiB. Plane1 has only even blocks such as block0, block2, block4 61 while Plane2 has only odd blocks such as block1, block3, block5. 62 So MTD regards it as 4KiB page size and 256KiB block size
|
/linux-4.1.27/drivers/usb/atm/ |
D | Kconfig | 15 To compile this driver as a module, choose M here: the 29 To compile this driver as a module, choose M here: the 41 To compile this driver as a module, choose M here: the 53 To compile this driver as a module, choose M here: the 62 and reception as module parameters. You may need to initialize 65 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/drivers/scsi/ |
D | Kconfig | 32 To compile this driver as a module, choose M here and read 36 However, do not compile this as a module if your root file system 85 To compile this driver as a module, choose M here and read 89 Do not compile this driver as a module if your root file system 92 (below) as a module either. 104 To compile this driver as a module, choose M here and read 114 you may be able to drive the USB-x0 and DI-x0 drives as well. 123 Please also have a look at the standard st docu, as most of it 124 applies to osst as well. 126 To compile this driver as a module, choose M here and read [all …]
|
/linux-4.1.27/drivers/net/wan/ |
D | Kconfig | 8 Wide Area Networks (WANs), such as X.25, Frame Relay and leased 34 The driver will be compiled as a module: the 37 # The COSA/SRP driver has not been tested as non-modular yet. 46 V.36 interface) to your Linux box. The cards can work as the 56 The driver will be compiled as a module: the 81 To change setting such as clock source you will need lmcctl. 84 To compile this driver as a module, choose M here: the 94 The driver will be compiled as a module: the 110 To compile this driver as a module, choose M here: the 178 To compile this as a module, choose M here: the [all …]
|
/linux-4.1.27/drivers/net/irda/ |
D | Kconfig | 11 discipline. To compile it as a module, choose M here: the module 31 Saying M, it will be built as a module named bfin_sir. 94 JetEye PC dongle. To compile it as a module, choose M here. The ESI 105 IR220L+ dongles. To compile it as a module, choose M here. The 116 dongle. To compile it as a module, choose M here. The Tekram dongle 128 To compile it as a module, choose M here. 135 dongle. To compile it as a module, choose M here. The Parallax 146 dongle. To compile it as a module, choose M here. The MA600 dongle 159 dongle. If you want to compile it as a module, choose M here. 170 dongle. If you want to compile it as a module, choose M here. [all …]
|
/linux-4.1.27/drivers/memory/ |
D | Kconfig | 49 interfacing to a variety of asynchronous as well as synchronous 58 Marvell EBU SoCs such as Discovery (mv78xx0), Orion (88f5xxx) and 60 devices such as NOR, NAND, SRAM, and FPGA. 79 (LAW) or an invalid LAW, as well as bad cache state that 93 memory devices such as NAND and SRAM.
|
/linux-4.1.27/drivers/misc/lis3lv02d/ |
D | Kconfig | 16 the laptop to act as a pinball machine-esque joystick. 18 This driver can also be built as modules. If so, the core module 33 the device to act as a pinball machine-esque joystick. 35 This driver can also be built as modules. If so, the core module
|
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
D | Kconfig | 8 If you choose to build it as a module, it will be called 19 If you choose to build it as a module, it will be called 30 If you choose to build it as a module, it will be called 41 If you choose to build it as a module, it will be called
|
/linux-4.1.27/Documentation/power/ |
D | opp.txt | 35 We can represent these as three OPPs as the following {Hz, uV} tuples: 46 CONFIG_PM as certain SoCs such as Texas Instrument's OMAP framework allows to 49 Typical usage of the OPP library is as follows: 73 be used for dev_pm_opp_enable/disable functions to make an opp available as required. 78 dependent subsystems such as cpufreq are left to the discretion of the SoC 86 intensive operations on data structure as the OPP library caters to. 88 To ensure that the data retrieved are sane, the users such as SoC framework 112 used by SoC framework to define a optimal list as per the demands of 133 High level framework such as cpufreq operates on frequencies. To map the 138 error checks such as IS_ERR() and appropriate actions taken by the caller. [all …]
|
D | suspend-and-interrupts.txt | 22 of suspended devices and cause unpredictable behavior to ensue as a result. 37 devices as well as during the time when nonboot CPUs are taken offline and 43 leave the corresponding IRQ enabled so as to allow the interrupt to work as 50 for it will be executed as usual after suspend_device_irqs(), even if the 60 from sleep states, especially if they are used for different purposes (e.g. as 64 (such as an SoC) so that signals from a given line are routed in a different way 65 during system sleep so as to trigger a system wakeup when needed. For example, 75 handling the given IRQ as a system wakeup interrupt line and disable_irq_wake() 80 it will be disabled, marked as pending and "suspended" so that it will be 97 Suspend-to-idle (also known as the "freeze" sleep state) is a relatively new [all …]
|
/linux-4.1.27/drivers/net/hamradio/ |
D | Kconfig | 16 To compile this driver as a module, choose M here: the module 24 PC and your TNC (the Terminal Node Controller acts as a kind of 26 microphone input and speaker output). This protocol can be used as 34 To compile this driver as a module, choose M here: the module 53 computer to an amateur radio modem (such as the WA4DSY 56kbps 63 compile it as a module (by saying M instead of Y), it will be called 68 kernel image) or "io=addr1,addr2,..." (when loaded as a module). The 73 certain parameters, such as channel access timing, clock mode, and 77 get at least version 1.27 of dmascc_cfg, as older versions will not 91 To compile this driver as a module, choose M here: the module [all …]
|
/linux-4.1.27/Documentation/PCI/ |
D | pci-iov-howto.txt | 14 capability which makes one physical device appear as multiple virtual 15 devices. The physical device is referred to as Physical Function (PF) 16 while the virtual devices are referred to as Virtual Functions (VF). 19 not enabled and the PF behaves as traditional PCIe device. Once it's 23 operates on the register set so it can be functional and appear as a 48 The VF is treated as hot-plugged PCI devices in the kernel, so they 49 should be able to work in the same way as real PCI devices. The VF 50 requires device driver that is same as a normal PCI device's.
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | atmel,lcdc.txt | 23 as specified below. 53 Required properties (as per of_videomode_helper): 60 Optional properties (as per of_videomode_helper): 64 - atmel,power-control-gpio: gpio to power on or off the LCD (as many as needed)
|
/linux-4.1.27/Documentation/sound/alsa/soc/ |
D | clocking.txt | 11 Every audio subsystem is driven by a master clock (sometimes referred to as MCLK 24 as BCLK). This clock is used to drive the digital audio data across the link 28 clock is sometimes referred to as LRC (left right clock) or FRAME. This clock 31 Bit Clock can be generated as follows:- 48 audio clocks as it usually gives more accurate sample rates than the CPU.
|
/linux-4.1.27/net/ipv4/netfilter/ |
D | Kconfig | 26 To compile it as a module, choose M here. If unsure, say N. 53 fields such as the source, destination, type of service and 102 packet transformations such as the source, destination address and 142 This is the "basic" form of SNMP-ALG, as described in RFC 2962 144 To compile it as a module, choose M here. If unsure, say N. 173 To compile it as a module, choose M here. If unsure, say N. 185 To compile it as a module, choose M here. If unsure, say N. 203 To compile it as a module, choose M here. If unsure, say N. 224 To compile it as a module, choose M here. If unsure, say N. 236 To compile it as a module, choose M here. If unsure, say N. [all …]
|
/linux-4.1.27/drivers/net/ |
D | Kconfig | 16 two machines with parallel ports using PLIP needs this, as well as 55 To compile this driver as a module, choose M here: the module 71 To compile this driver as a module, choose M here: the module 82 to be supported at the other end as well, either with a similar EQL 90 To compile this driver as a module, choose M here: the module 112 To compile this driver as a module, choose M here: the module 114 device at a time, you need to compile this driver as a module. 132 To compile this driver as a module, choose M here: the module 142 can be added in the same way as a macvlan device, using 'type 145 To compile this driver as a module, choose M here: the module [all …]
|
/linux-4.1.27/sound/core/ |
D | Kconfig | 49 To compile this driver as a module, choose M here: the module 65 To compile this driver as a module, choose M here: the module 78 To compile this driver as a module, choose M here: the module 101 this will be compiled as a module. The module will be called 110 the hrtimer as a precise timing source. The ALSA sequencer code 113 To compile this driver as a module, choose M here: the module 117 bool "Use HR-timer as default sequencer timer" 121 Say Y here to use the HR-timer backend as the default sequencer 130 the RTC timer as a precise timing source and maps the RTC 134 To compile this driver as a module, choose M here: the module [all …]
|
/linux-4.1.27/Documentation/ia64/ |
D | serial.txt | 13 as a serial console. If the user specified "console=ttyS0" 15 kernel registered the device described by the HCDP as 20 the kernel registered those as /dev/ttyS0 and /dev/ttyS1. 23 after /dev/ttyS0 as they were discovered. 56 card) as the console. Then you don't need to tell Linux 95 - Multiple UARTs selected as EFI console devices. EFI and 101 selected as EFI console device. EFI uses the MP as a 123 "login:" prompt, but can't login as root: 137 The table was originally defined as the "HCDP" for "Headless 142 several UARTs. One of the UARTs is often used as a console; the [all …]
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | timekeeping.txt | 46 speaker. Now the PIT is typically integrated as part of an emulated chipset 51 available, but not all modes are available to all timers, as only timer 2 53 controlled by port 61h, bit 0, as illustrated in the following diagram. 146 0100 - Latch Timer 1 count for port 0x41 - as described above 147 0101 - Set Timer 1 LSB mode for port 0x41 - as described above 148 0110 - Set Timer 1 MSB mode for port 0x41 - as described above 149 0111 - Set Timer 1 16-bit mode for port 0x41 - as described above 151 1000 - Latch Timer 2 count for port 0x42 - as described above 152 1001 - Set Timer 2 LSB mode for port 0x42 - as described above 153 1010 - Set Timer 2 MSB mode for port 0x42 - as described above [all …]
|
/linux-4.1.27/drivers/staging/rtl8188eu/ |
D | Kconfig | 7 This option adds the Realtek RTL8188EU USB device such as TP-Link TL-WN725N. 8 If built as a module, it will be called r8188eu. 17 will never be used as an AP, or the target system has limited memory,
|
/linux-4.1.27/arch/ia64/kernel/ |
D | efi.c | 976 u64 as = 0, ae; in find_memmap_space() local 1018 as = max(contig_low, md->phys_addr); in find_memmap_space() 1022 as = max(as, min_addr); in find_memmap_space() 1024 if (ae <= as) in find_memmap_space() 1028 if (total_mem + (ae - as) > mem_limit) in find_memmap_space() 1029 ae -= total_mem + (ae - as) - mem_limit; in find_memmap_space() 1031 if (ae <= as) in find_memmap_space() 1034 if (ae - as > space_needed) in find_memmap_space() 1040 return __va(as); in find_memmap_space() 1053 u64 as, ae, lim; in efi_memmap_init() local [all …]
|
/linux-4.1.27/drivers/staging/media/bcm2048/ |
D | TODO | 10 The sysfs stuff should be replaced by controls as well. A lot of the RDS 11 support is now available as controls (although there may well be some 16 Correct Coding Style, as this driver also violates several Style 22 radio-si4713/si4713-i2c.c as a good example. But I would wait with that
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/msm/ |
D | timer.txt | 13 optionally as well, 2 watchdog interrupts, in that order. 18 must appear in the same order as the clock names. 20 - clock-names: The name of the clocks as free-form strings. They should be in 21 the same order as the clocks.
|
/linux-4.1.27/drivers/input/gameport/ |
D | Kconfig | 19 To compile this driver as a module, choose M here: the 31 To compile this driver as a module, choose M here: the 39 To compile this driver as a module, choose M here: the 49 To compile this driver as a module, choose M here: the 60 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/Documentation/virtual/kvm/devices/ |
D | mpic.txt | 9 MPIC will act as the system interrupt controller, connecting to each 21 Access an MPIC register, as if the access were made from the guest. 42 be instantiated. Once that device has been created, it's available as 48 The numbering is the same as the MPIC device tree binding -- based on 50 regard to any subdivisions in chip documentation such as "internal"
|
D | arm-vgic.txt | 9 legacy KVM_CREATE_IRQCHIP api. The created VGIC will act as the VM interrupt 13 Creating a guest GICv3 device requires a host GICv3 as well. 15 as well. 51 The offset is relative to the "Distributor base address" as defined in the 52 GICv2 specs. Getting or setting such a register has the same effect as 72 The offset specifies the offset from the "CPU interface base address" as 74 same effect as reading or writing the register on the actual hardware. 113 -ENXIO: VGIC not properly configured as required prior to calling
|
/linux-4.1.27/drivers/w1/masters/ |
D | Kconfig | 14 This support is also available as a module. If so, the module 24 This support is also available as a module. If so, the module 34 This driver can also be built as a module. If so, the module 46 Say Y here to enable the DS1WM 1-wire driver, such as that 57 This support is also available as a module. If so, the module
|
/linux-4.1.27/drivers/i2c/muxes/ |
D | Kconfig | 17 This driver can also be built as a module. If so, the module 29 This driver can also be built as a module. If so, the module 38 This driver can also be built as a module. If so, the module 48 This driver can also be built as a module. If so, the module 60 This driver can also be built as a module. If so, the module will be
|
/linux-4.1.27/Documentation/video4linux/ |
D | cpia2_overview.txt | 9 be referred to as the 410 and the 500 sensors, or the CIF and VGA sensors. 15 header files are marked with VP4 or VP5 as part of the symbol name. 17 The cameras appear externally as three sets of registers. Setting register 19 interdependant, such as the sequence required to power up the camera. I will 24 registers that control housekeeping functions such as powering up the video 29 compressed as Motion JPEG (JPEGA). The VC controls all of the compression
|
/linux-4.1.27/drivers/net/appletalk/ |
D | Kconfig | 11 so that your Linux box can act as a print and file server for Macs as 12 well as access AppleTalk printers. Check out 23 information as well. 25 To compile this driver as a module, choose M here: the module will be 26 called appletalk. You almost certainly want to compile it as a 46 networks. The card is also known as the Farallon PhoneNet PC card. 86 you want your Linux box to act as an Internet gateway for a zoo of 95 To compile the AppleTalk-IP support as a module, choose M here: the
|
/linux-4.1.27/drivers/net/ethernet/smsc/ |
D | Kconfig | 35 To compile this driver as a module, choose M here. The module 52 This driver is also available as a module ( = code which can be 54 The module will be called smc91x. If you want to compile it as a 66 To compile this driver as a module, choose M here: the module will be 92 This driver is also available as a module. The module will be 93 called smc911x. If you want to compile it as a module, say M 106 To compile this driver as a module, choose M here. The module 129 This driver is also available as a module. The module will be 130 called smsc9420. If you want to compile it as a module, say M
|
/linux-4.1.27/arch/powerpc/kvm/ |
D | e500_mmu.c | 84 gva_t eaddr, int tlbsel, unsigned int pid, int as) in kvmppc_e500_tlb_index() argument 120 if (get_tlb_ts(tlbe) != as && as != -1) in kvmppc_e500_tlb_index() 130 gva_t eaddr, int as) in kvmppc_e500_deliver_tlb_miss() argument 143 vcpu->arch.shared->mas1 = MAS1_VALID | (as ? MAS1_TS : 0) in kvmppc_e500_deliver_tlb_miss() 151 | (as ? MAS6_SAS : 0); in kvmppc_e500_deliver_tlb_miss() 347 int as = !!get_cur_sas(vcpu); in kvmppc_e500_emul_tlbsx() local 353 esel = kvmppc_e500_tlb_index(vcpu_e500, ea, tlbsel, pid, as); in kvmppc_e500_emul_tlbsx() 457 gva_t eaddr, unsigned int pid, int as) in kvmppc_e500_tlb_search() argument 463 esel = kvmppc_e500_tlb_index(vcpu_e500, eaddr, tlbsel, pid, as); in kvmppc_e500_tlb_search() 478 u8 as; in kvmppc_core_vcpu_translate() local [all …]
|
/linux-4.1.27/drivers/input/mouse/ |
D | Kconfig | 24 includes the standard 2 or 3-button PS/2 mouse, as well as PS/2 38 To compile this driver as a module, choose M here: the 118 Say Y here if you have a laptop (such as MSI WIND Netbook) 174 To compile this driver as a module, choose M here: the 195 To compile this driver as a module, choose M here: the 218 To compile this driver as a module, choose M here: the 231 To compile this driver as a module, choose M here: the module will be 242 To compile this driver as a module, choose M here: the module will be 271 To compile this driver as a module, choose M here: the 287 To compile this driver as a module, choose M here: the [all …]
|
/linux-4.1.27/Documentation/blockdev/ |
D | paride.txt | 9 to personal computers, many external devices such as portable hard-disk, 20 device registers, as well as data block transfer functions. Sometimes, 50 as well as most of the clone and no-name products on the market. 91 the PARIDE drivers into your kernel, or to build them as modules. 94 as well as at least one of the high-level drivers and at least one 126 configure them as loadable modules, before attempting to compile a 148 paride: bpck registered as protocol 0 149 paride: epat registered as protocol 1 152 different protocol selections. You should note these numbers as you 177 2.2 Loading and configuring PARIDE as modules [all …]
|
/linux-4.1.27/Documentation/target/ |
D | tcmu-design.txt | 26 allows userspace programs to be written which act as iSCSI targets. 31 modules for file, block device, RAM or using another SCSI device as 33 built-in modules are implemented entirely as kernel code. 39 the actual data storage as well. These are referred to as "backstores" 43 these are implemented entirely as kernel code. 46 use case that other non-kernel target solutions, such as tgt, are able 47 to support is using Gluster's GLFS or Ceph's RBD as a backstore. The 48 target then serves as a translator, allowing initiators to store data 73 fatal if we're careful to keep things as simple as possible. 105 expressed as an offset from the region's starting address. This allows [all …]
|
/linux-4.1.27/Documentation/ide/ |
D | ide.txt | 54 This is the multiple IDE interface driver, as evolved from hd.c. 57 14 & 15). There can be up to two drives per interface, as per the ATA-6 spec. 93 specified, though the "original" geometry may be retained as the "logical" 107 jumpered as "single" or "master", *not* "slave". Many folks have had 113 such as the NEC-260 and the new MITSUMI triple/quad speed drives. 118 via LILO, such as: 158 provided it is mounted with the default block size of 1024 (as above). 164 drivers can always be compiled as loadable modules, the chipset drivers 166 compiled as a loadable module provided no chipset support is needed. 168 When using ide.c as a module in combination with kmod, add: [all …]
|
/linux-4.1.27/drivers/staging/android/ |
D | TODO | 5 - make sure things build as modules properly 6 - add proper arch dependencies as needed 8 - kuid_t should never be exposed to user space as it is
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-gpio.txt | 9 - i2c-gpio,sda-open-drain: sda as open drain 10 - i2c-gpio,scl-open-drain: scl as open drain 11 - i2c-gpio,scl-output-only: scl as output only
|
/linux-4.1.27/drivers/net/ethernet/8390/ |
D | Kconfig | 30 To compile this driver as a module, choose M here: the module will be 57 To compile this driver as a module, choose M here: the module 86 some SnapGear routers do as well. 89 on them then choose Y. To compile this driver as a module, choose M 106 To compile this driver as a module, choose M here. The module 125 To compile this driver as a module, choose M here. The module 136 To compile this driver as a module, choose M here: the module 147 To compile this driver as a module, choose M here: the module will be 173 such as some BusLogic models) causes corruption problems with many 178 To compile this driver as a module, choose M here. The module [all …]
|
/linux-4.1.27/Documentation/hid/ |
D | hid-transport.txt | 12 The HID subsystem is designed as a bus. Any I/O subsystem may provide HID 48 Everything below "HID Core" is simplified in this graph as it is only of 67 HID core will operate a device as long as it is registered regardless of any 81 driver in whatever way they like. They might just be the same as asynchronous 92 will describe them as two bi-directional channels as they have several 129 on the intr channel as this channel is asynchronous. 131 INPUT and OUTPUT reports can be sent as pure data reports on the intr channel. 133 this is rarely done as OUTPUT reports are normally quite scarce. But devices are 141 - GET_REPORT: A GET_REPORT request has a report ID as payload and is sent 143 requested report ID on the ctrl channel as a synchronous acknowledgement. [all …]
|
/linux-4.1.27/drivers/block/paride/ |
D | Kconfig | 4 # PARIDE doesn't need PARPORT, but if PARPORT is configured as a module, 19 it as a loadable module. The module will be called pd. You 33 build it as a loadable module. The module will be called pcd. You 49 to build it as a loadable module. The module will be called pf. 63 to build it as a loadable module. The module will be called pt. 74 programs, such as cdrtools, to send ATAPI commands directly to a 79 otherwise you should answer M to build it as a loadable module. The 103 protocol driver, otherwise you should answer M to build it as a 122 answer M to build it as a loadable module. The module will be 141 answer M to build it as a loadable module. The module will be [all …]
|
/linux-4.1.27/drivers/media/usb/go7007/ |
D | Kconfig | 20 To compile this driver as a module, choose M here: the 30 To compile this driver as a module, choose M here: the 41 To compile this driver as a module, choose M here: the 50 To compile this driver as a module, choose M here: the
|
/linux-4.1.27/firmware/keyspan/ |
D | usa19qi.HEX | 88 as an unpublished work. This notice does not imply unrestricted or 90 derived. Except as noted below this firmware image may not be 95 image as part of a Linux or other Open Source operating system kernel 96 in text or binary form as required.
|
D | usa19.HEX | 88 as an unpublished work. This notice does not imply unrestricted or 90 derived. Except as noted below this firmware image may not be 95 image as part of a Linux or other Open Source operating system kernel 96 in text or binary form as required.
|
/linux-4.1.27/Documentation/fmc/ |
D | FMC-and-SDB.txt | 13 Code and documentation for the FMC bus was born as part of the spec-sw 15 software support for the various carriers, should include this as a 24 Selected versions of the documentation, as well as complete tar 32 FMC, as said, stands for "FPGA Mezzanine Card". It is a standard 49 FMC, as such, is not a bus in the usual meaning of the term, because 52 This package, however, implements a bus as a software abstraction. 59 enumerating the internal structure of an FPGA image. We also use it as
|
/linux-4.1.27/arch/x86/ |
D | Makefile | 144 cfi := $(call as-instr,.cfi_startproc\n.cfi_rel_offset $(sp-y)$(comma)0\n.cfi_endproc,-DCONFIG_AS_C… 146 cfi-sigframe := $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIG… 147 cfi-sections := $(call as-instr,.cfi_sections .debug_frame,-DCONFIG_AS_CFI_SECTIONS=1) 150 asinstr := $(call as-instr,fxsaveq (%rax),-DCONFIG_AS_FXSAVEQ=1) 151 asinstr += $(call as-instr,pshufb %xmm0$(comma)%xmm0,-DCONFIG_AS_SSSE3=1) 152 asinstr += $(call as-instr,crc32l %eax$(comma)%eax,-DCONFIG_AS_CRC32=1) 153 avx_instr := $(call as-instr,vxorps %ymm0$(comma)%ymm1$(comma)%ymm2,-DCONFIG_AS_AVX=1) 154 avx2_instr :=$(call as-instr,vpbroadcastb %xmm0$(comma)%ymm1,-DCONFIG_AS_AVX2=1)
|
/linux-4.1.27/Documentation/scheduler/ |
D | completion.txt | 19 efficient code as both threads can continue until the result is actually 60 Good naming (as always) helps code readability. 77 most likely a bug as it re-initializes the queue to an empty queue and 95 _interruptible/_killable variants is not advisable as they will require 120 immediately as all dependencies are satisfied if not it will block until 132 The default behavior is to wait without a timeout and to mark the task as 134 in process context (as they can sleep) but not in atomic context, 167 The task is marked as TASK_UNINTERRUPTIBLE and will wait at most 'timeout' 177 This function passes a timeout in jiffies and marks the task as 182 Further variants include _killable which uses TASK_KILLABLE as the [all …]
|
/linux-4.1.27/fs/freevxfs/ |
D | Kconfig | 11 NOTE: the file system type as used by mount(1), mount(2) and 12 fstab(5) is 'vxfs' as it describes the file system format, not 15 To compile this as a module, choose M here: the module will be
|
/linux-4.1.27/drivers/tty/serial/ |
D | Kconfig | 37 Say Y here if you wish to use an AMBA PrimeCell UART as the system 42 (/dev/tty0) will still be used as the system console by default, but 43 you can alter that using a kernel command line option such as 65 Say Y here if you wish to use an AMBA PrimeCell UART as the system 70 (/dev/tty0) will still be used as the system console by default, but 71 you can alter that using a kernel command line option such as 100 If unsure, say Y. To compile this driver as a module, choose M here: 109 If you say Y here, it will be possible to use a serial port as the 131 AT91 or AT32 processor as the system console (the system 151 bool "Install as device ttyATn instead of ttySn" [all …]
|
/linux-4.1.27/tools/perf/util/ |
D | unwind-libunwind.c | 37 UNW_OBJ(dwarf_search_unwind_table) (unw_addr_space_t as, 324 find_proc_info(unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, in find_proc_info() argument 349 return dwarf_search_unwind_table(as, ip, &di, pi, in find_proc_info() 363 return dwarf_search_unwind_table(as, ip, &di, pi, in find_proc_info() 371 static int access_fpreg(unw_addr_space_t __maybe_unused as, in access_fpreg() argument 381 static int get_dyn_info_list_addr(unw_addr_space_t __maybe_unused as, in get_dyn_info_list_addr() argument 388 static int resume(unw_addr_space_t __maybe_unused as, in resume() argument 397 get_proc_name(unw_addr_space_t __maybe_unused as, in get_proc_name() argument 428 static int access_mem(unw_addr_space_t __maybe_unused as, in access_mem() argument 473 static int access_reg(unw_addr_space_t __maybe_unused as, in access_reg() argument [all …]
|
/linux-4.1.27/drivers/net/ethernet/amd/ |
D | Kconfig | 30 To compile this driver as a module, choose M here: the module 43 To compile this driver as a module, choose M here. The module 55 To compile this driver as a module, choose M here: the module 68 To compile this driver as a module, choose M here. The module 78 To compile this driver as a module, choose M here: the module 131 To compile this driver as a module, choose M here. 140 To compile this driver as a module, choose M here: the module will be 151 To compile this driver as a module, choose M here. The module 173 systems, on some older Ultra systems and as an Sbus option. These 177 To compile this driver as a module, choose M here: the module [all …]
|
/linux-4.1.27/drivers/misc/mic/ |
D | Kconfig | 8 device or driver on the MIC Bus, such as CONFIG_INTEL_MIC_HOST, 14 More information about the Intel MIC family as well as the Linux 34 More information about the Intel MIC family as well as the Linux
|