Home
last modified time | relevance | path

Searched refs:as (Results 1 – 25 of 1721) sorted by relevance

12345678910>>...69

/linux-3.4.99/drivers/spi/
Dspi-atmel.c259 static void cs_activate(struct atmel_spi *as, struct spi_device *spi) in cs_activate() argument
271 spi_writel(as, CSR0, asd->csr); in cs_activate()
272 spi_writel(as, MR, SPI_BF(PCS, 0x0e) | SPI_BIT(MODFDIS) in cs_activate()
274 mr = spi_readl(as, MR); in cs_activate()
283 csr = spi_readl(as, CSR0 + 4 * i); in cs_activate()
285 spi_writel(as, CSR0 + 4 * i, in cs_activate()
289 mr = spi_readl(as, MR); in cs_activate()
293 spi_writel(as, MR, mr); in cs_activate()
301 static void cs_deactivate(struct atmel_spi *as, struct spi_device *spi) in cs_deactivate() argument
310 mr = spi_readl(as, MR); in cs_deactivate()
[all …]
/linux-3.4.99/drivers/net/wireless/ath/ath5k/
Dani.c221 ath5k_ani_raise_immunity(struct ath5k_hw *ah, struct ath5k_ani_state *as, in ath5k_ani_raise_immunity() argument
230 if (as->noise_imm_level < ATH5K_ANI_MAX_NOISE_IMM_LVL) { in ath5k_ani_raise_immunity()
231 ath5k_ani_set_noise_immunity_level(ah, as->noise_imm_level + 1); in ath5k_ani_raise_immunity()
237 as->spur_level < ah->ani_state.max_spur_level) { in ath5k_ani_raise_immunity()
238 ath5k_ani_set_spur_immunity_level(ah, as->spur_level + 1); in ath5k_ani_raise_immunity()
244 if (as->firstep_level < ATH5K_ANI_MAX_FIRSTEP_LVL) in ath5k_ani_raise_immunity()
245 ath5k_ani_set_firstep_level(ah, as->firstep_level + 1); in ath5k_ani_raise_immunity()
260 if (ofdm_trigger && as->ofdm_weak_sig) { in ath5k_ani_raise_immunity()
266 if (as->firstep_level < ATH5K_ANI_MAX_FIRSTEP_LVL) { in ath5k_ani_raise_immunity()
267 ath5k_ani_set_firstep_level(ah, as->firstep_level + 1); in ath5k_ani_raise_immunity()
[all …]
/linux-3.4.99/drivers/iommu/
Dtegra-smmu.c213 struct smmu_as *as; member
245 struct smmu_as *as; /* Run-time allocated array */ member
304 struct smmu_as *as = c->as; in __smmu_client_set_hwgrp() local
305 u32 val, offs, mask = SMMU_ASID_ENABLE(as->asid); in __smmu_client_set_hwgrp()
306 struct smmu_device *smmu = as->smmu; in __smmu_client_set_hwgrp()
345 struct smmu_as *as = c->as; in smmu_client_set_hwgrp() local
346 struct smmu_device *smmu = as->smmu; in smmu_client_set_hwgrp()
379 struct smmu_as *as = &smmu->as[i]; in smmu_setup_regs() local
382 smmu_write(smmu, SMMU_PTB_ASID_CUR(as->asid), SMMU_PTB_ASID); in smmu_setup_regs()
383 val = as->pdir_page ? in smmu_setup_regs()
[all …]
/linux-3.4.99/drivers/char/
Dapm-emulation.c198 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 …]
/linux-3.4.99/arch/xtensa/include/asm/
Dcacheasm.h48 .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 …]
Dasmmacro.h64 .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-3.4.99/arch/x86/kernel/
Dapm_32.c1158 static int queue_empty(struct apm_user *as) in queue_empty() argument
1160 return as->event_head == as->event_tail; in queue_empty()
1163 static apm_event_t get_queued_event(struct apm_user *as) in get_queued_event() argument
1165 if (++as->event_tail >= APM_MAX_EVENTS) in get_queued_event()
1166 as->event_tail = 0; in get_queued_event()
1167 return as->events[as->event_tail]; in get_queued_event()
1172 struct apm_user *as; in queue_event() local
1177 for (as = user_list; as != NULL; as = as->next) { in queue_event()
1178 if ((as == sender) || (!as->reader)) in queue_event()
1180 if (++as->event_head >= APM_MAX_EVENTS) in queue_event()
[all …]
/linux-3.4.99/sound/usb/
Dstream.c87 struct snd_usb_stream *as; in snd_usb_add_audio_stream() local
93 as = list_entry(p, struct snd_usb_stream, list); in snd_usb_add_audio_stream()
94 if (as->fmt_type != fp->fmt_type) in snd_usb_add_audio_stream()
96 subs = &as->substream[stream]; in snd_usb_add_audio_stream()
108 as = list_entry(p, struct snd_usb_stream, list); in snd_usb_add_audio_stream()
109 if (as->fmt_type != fp->fmt_type) in snd_usb_add_audio_stream()
111 subs = &as->substream[stream]; in snd_usb_add_audio_stream()
114 err = snd_pcm_new_stream(as->pcm, stream, 1); in snd_usb_add_audio_stream()
117 snd_usb_init_substream(as, stream, fp); in snd_usb_add_audio_stream()
122 as = kzalloc(sizeof(*as), GFP_KERNEL); in snd_usb_add_audio_stream()
[all …]
/linux-3.4.99/drivers/usb/core/
Ddevio.c273 struct async *as; in alloc_async() local
275 as = kzalloc(sizeof(struct async), GFP_KERNEL); in alloc_async()
276 if (!as) in alloc_async()
278 as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL); in alloc_async()
279 if (!as->urb) { in alloc_async()
280 kfree(as); in alloc_async()
283 return as; in alloc_async()
286 static void free_async(struct async *as) in free_async() argument
288 put_pid(as->pid); in free_async()
289 if (as->cred) in free_async()
[all …]
/linux-3.4.99/Documentation/pcmcia/
Ddriver-changes.txt2 * 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-3.4.99/Documentation/filesystems/
Dufs.txt18 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
/linux-3.4.99/drivers/media/video/gspca/
DKconfig14 To compile this driver as modules, choose M here: the
30 To compile this driver as a module, choose M here: the
39 To compile this driver as a module, choose M here: the
50 To compile this driver as a module, choose M here: the
59 To compile this driver as a module, choose M here: the
68 To compile this driver as a module, choose M here: the
77 To compile this driver as a module, choose M here: the
87 To compile this driver as a module, choose M here: the
96 To compile this driver as a module, choose M here: the
105 To compile this driver as a module, choose M here: the
[all …]
/linux-3.4.99/drivers/ptp/
DKconfig23 This driver adds support for PTP clocks as character
25 also enable at least one clock driver as well.
27 To compile this driver as a module, choose M here: the module
31 tristate "Freescale eTSEC as PTP clock"
35 This driver adds support for using the eTSEC as a PTP
40 To compile this driver as a module, choose M here: the module
44 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-3.4.99/drivers/staging/comedi/
DKconfig41 from multiple devices together as one.
43 To compile this driver as a module, choose M here: the module will be
56 To compile this driver as a module, choose M here: the module will be
68 To compile this driver as a module, choose M here: the module will be
77 To compile this driver as a module, choose M here: the module will be
86 To compile this driver as a module, choose M here: the module will be
111 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 module will be
131 To compile this driver as a module, choose M here: the module will be
140 To compile this driver as a module, choose M here: the module will be
[all …]
/linux-3.4.99/drivers/input/misc/
DKconfig19 Support the ONKEY of Marvell 88PM860x PMICs as an input device
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
42 To compile this driver as a module, choose M here: the
52 To compile this driver as a module, choose M here: the
62 To compile this driver as a module, choose M here: the
73 To compile this driver as a module, choose M here: the
85 To compile this driver as a module, choose M here: the
97 To compile this driver as module, choose M here: the
108 To compile this driver as a module, choose M here: the
[all …]
/linux-3.4.99/sound/pci/hda/
DKconfig13 To compile this driver as a module, choose M here: the module
84 option, such as patch=hda-init.
93 snd-hda-intel driver, such as ALC880.
95 When the HD-audio driver is built as a module, the codec
96 support code is also built as another module,
118 snd-hda-intel driver, such as AD1986A.
120 When the HD-audio driver is built as a module, the codec
121 support code is also built as another module,
130 snd-hda-intel driver, such as STAC9200.
132 When the HD-audio driver is built as a module, the codec
[all …]
/linux-3.4.99/net/bridge/netfilter/
DKconfig27 To compile it as a module, choose M here. If unsure, say N.
36 To compile it as a module, choose M here. If unsure, say N.
45 To compile it as a module, choose M here. If unsure, say N.
54 To compile it as a module, choose M here. If unsure, say N.
63 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.
79 To compile it as a module, choose M here. If unsure, say N.
88 To compile it as a module, choose M here. If unsure, say N.
97 If you want to compile it as a module, say M here and read
105 This value is the same as the one used in the iptables mark match and
[all …]
/linux-3.4.99/drivers/md/
Ddm-flakey.c42 static int parse_features(struct dm_arg_set *as, struct flakey_c *fc, in parse_features() argument
57 if (!as->argc) in parse_features()
60 r = dm_read_arg_group(_args, as, &argc, &ti->error); in parse_features()
65 arg_name = dm_shift_arg(as); in parse_features()
89 r = dm_read_arg(_args + 1, as, &fc->corrupt_bio_byte, &ti->error); in parse_features()
97 arg_name = dm_shift_arg(as); in parse_features()
111 r = dm_read_arg(_args + 2, as, &fc->corrupt_bio_value, &ti->error); in parse_features()
119 r = dm_read_arg(_args + 3, as, &fc->corrupt_bio_flags, &ti->error); in parse_features()
161 struct dm_arg_set as; in flakey_ctr() local
165 as.argc = argc; in flakey_ctr()
[all …]
/linux-3.4.99/drivers/input/joystick/
DKconfig31 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-3.4.99/drivers/input/keyboard/
DKconfig22 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-3.4.99/drivers/media/video/davinci/
DKconfig11 To compile this driver as a module, choose M here: the
22 To compile this driver as a module, choose M here: the
31 To compile this driver as a module, choose M here: the
49 To compile this driver as a module, choose M here: the
59 with decoder modules such as TVP5146 over BT656 or
60 sensor module such as MT9T001 over a raw interface. This
64 To compile this driver as a module, choose M here: the
74 with decoder modules such as TVP5146 over BT656 or
75 sensor module such as MT9T001 over a raw interface. This
79 To compile this driver as a module, choose M here: the
[all …]
/linux-3.4.99/drivers/hwmon/
DKconfig13 sensors and various additional features such as the ability to
22 This support 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
68 This driver can also be built as a module. If so, the module
78 This driver can also be built as a module. If so, the module
88 This driver can also be built as a module. If so, the module
98 This driver can also be built as a module. If so, the module
114 This driver can also be built as a module. If so, the module
125 This driver can also be built as a module. If so, the module
136 This driver can also be built as a module. If so, the module
[all …]
/linux-3.4.99/drivers/hwmon/pmbus/
DKconfig12 This driver can also be built as a module. If so, the module will
26 This driver can also be built as a module. If so, the module will
37 This driver can also be built as a module. If so, the module will
47 This driver can also be built as a module. If so, the module will
57 This driver can also be built as a module. If so, the module will
67 This driver can also be built as a module. If so, the module will
77 This driver can also be built as a module. If so, the module will
87 This driver can also be built as a module. If so, the module will
98 This driver can also be built as a module. If so, the module will
109 This driver can also be built as a module. If so, the module will
[all …]
/linux-3.4.99/drivers/input/tablet/
DKconfig22 (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
87 (CONFIG_INPUT_EVDEV) as well.
[all …]
/linux-3.4.99/drivers/input/touchscreen/
DKconfig23 To compile this driver as a module, choose M here: the
42 To compile this driver as a module, choose M here: the
55 To compile this driver as a module, choose M here: the
66 To compile this driver as a module, choose M here: the
75 To compile this driver as a module, choose M here: the
86 To compile this driver as a module, choose M here: the
94 such as AT42QT602240/ATMXT224, connected to your system.
98 To compile this driver as a module, choose M here: the
111 To compile this driver as a module, choose M here: the
123 To compile this driver as a module, choose M here: the
[all …]

12345678910>>...69