Searched refs:write (Results 126 - 150 of 2699) sorted by relevance

1234567891011>>

/linux-master/drivers/media/radio/
H A Dradio-wl1273.c197 /* wrap write pointer */
290 r = core->write(core, WL1273_TUNER_MODE_SET,
328 core->write(core, WL1273_INT_MASK_SET, radio->irq_flags);
363 r = core->write(core, WL1273_CHANL_SET, freq / 10);
377 r = core->write(core, WL1273_POWER_ENB_SET, 1);
418 core->write(core, WL1273_INT_MASK_SET, radio->irq_flags);
425 r = core->write(core, WL1273_FREQ_SET, f);
431 r = core->write(core, WL1273_TUNER_MODE_SET, TUNER_MODE_PRESET);
522 core->write(core, WL1273_RESET, 0);
535 int r = core->write(cor
[all...]
/linux-master/drivers/irqchip/
H A Dirq-crossbar.c30 * @write: register write function pointer
40 void (*write)(int, int); member in struct:crossbar_device
106 cb->write(i, hwirq);
163 cb->write(d->hwirq, cb->safe_map);
279 cb->write = crossbar_writeb;
282 cb->write = crossbar_writew;
285 cb->write = crossbar_writel;
313 cb->write(i, cb->safe_map);
/linux-master/arch/arm/mm/
H A Dcache-fa.S69 mcrne p15, 0, ip, c7, c10, 4 @ drain write buffer
97 mcrne p15, 0, ip, c7, c10, 4 @ data write barrier
133 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
154 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
161 * May not write back any entries. If 'start' or 'end'
180 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
186 * Clean (write back) the specified virtual address range.
198 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
213 mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
H A Dabort-macro.S4 * differently than every other instruction, so it is set to 0 (write)
6 * during an abort the instructions will be treated as a write and the
21 tst \tmp, #1 << 11 @ L = 0 -> write
H A Dtlb-fa.S12 * This assume an unified TLBs, with a write buffer, and branch target buffer (BTB)
47 mcr p15, 0, r3, c7, c10, 4 @ data write barrier
60 mcr p15, 0, r3, c7, c10, 4 @ data write barrier
/linux-master/scripts/gdb/linux/
H A Dsymbols.py44 gdb.write("refreshing all symbols to reload module "
77 gdb.write("scanning for modules in {0}\n".format(path))
130 gdb.write("loading @{addr}: {filename}\n".format(
139 gdb.write("no module object found for '{0}'\n".format(module_name))
142 gdb.write("loading vmlinux\n")
163 gdb.write("no modules found\n")
188 gdb.write("Note: symbol update on module loading not supported "
/linux-master/arch/s390/mm/
H A Dcmm.c246 static int cmm_pages_handler(struct ctl_table *ctl, int write, argument
257 rc = proc_doulongvec_minmax(&ctl_entry, write, buffer, lenp, ppos);
258 if (rc < 0 || !write)
265 static int cmm_timed_pages_handler(struct ctl_table *ctl, int write, argument
277 rc = proc_doulongvec_minmax(&ctl_entry, write, buffer, lenp, ppos);
278 if (rc < 0 || !write)
285 static int cmm_timeout_handler(struct ctl_table *ctl, int write, argument
292 if (!*lenp || (*ppos && !write)) {
297 if (write) {
/linux-master/arch/powerpc/boot/
H A Dmktree.c119 if (write(out_fd, &bt, sizeof(bt)) != sizeof(bt)) {
120 perror("boot-image write");
132 if (write(out_fd, tmpbuf, sizeof(tmpbuf)) != sizeof(tmpbuf)) {
133 perror("boot-image write");
145 if (write(out_fd, &bt, sizeof(bt)) != sizeof(bt)) {
/linux-master/include/linux/
H A Dnvram.h15 * @write: store a range of bytes to NVRAM then update checksum (if any)
24 * .write methods can be used to implement that efficiently.
27 * The nvram_read() and nvram_write() functions call the .read and .write
37 ssize_t (*write)(char *, size_t, loff_t *); member in struct:nvram_ops
127 if (arch_nvram_ops.write)
128 return arch_nvram_ops.write(buf, count, ppos);
H A Dserio.h34 int (*write)(struct serio *, unsigned char); member in struct:serio
124 if (serio->write)
125 return serio->write(serio, data);
/linux-master/drivers/xen/xen-pciback/
H A Dconf_space.h46 conf_dword_write write; member in struct:config_field::__anon82::__anon83
50 conf_word_write write; member in struct:config_field::__anon82::__anon84
54 conf_byte_write write; member in struct:config_field::__anon82::__anon85
/linux-master/kernel/
H A Dutsname_sysctl.c33 static int proc_do_uts_string(struct ctl_table *table, int write, argument
46 * We also need to read the original value in the write==1 case to
52 r = proc_dostring(&uts_table, write, buffer, lenp, ppos);
54 if (write) {
H A Dwatchdog.c772 static int proc_watchdog_common(int which, struct ctl_table *table, int write, argument
779 if (!write) {
785 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
788 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
799 static int proc_watchdog(struct ctl_table *table, int write, argument
804 table, write, buffer, lenp, ppos);
810 static int proc_nmi_watchdog(struct ctl_table *table, int write, argument
813 if (!watchdog_hardlockup_available && write)
816 table, write, buffer, lenp, ppos);
823 static int proc_soft_watchdog(struct ctl_table *table, int write, argument
834 proc_watchdog_thresh(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) argument
857 proc_watchdog_cpumask(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) argument
[all...]
/linux-master/tools/testing/selftests/powerpc/pmu/
H A Dlib.c24 FAIL_IF(write(write_pipe.write_fd, &c, 1) != 1);
46 FAIL_IF(write(write_pipe.write_fd, &c, 1) != 1);
55 FAIL_IF(write(write_pipe.write_fd, &c, 1) != 1);
/linux-master/tools/testing/selftests/thermal/intel/workload_hint/
H A Dworkload_hint_test.c39 if (write(fd, "0\n", 2) < 0) {
79 if (write(fd, delay_str, strlen(delay_str)) < 0) {
101 if (write(fd, "1\n", 2) < 0) {
/linux-master/drivers/parport/
H A Dprocfs.c36 static int do_active_device(struct ctl_table *table, int write, argument
44 if (write) /* can't happen anyway */
73 static int do_autoprobe(struct ctl_table *table, int write, argument
81 if (write) /* permissions stop this */
116 static int do_hardware_base_addr(struct ctl_table *table, int write, argument
128 if (write) /* permissions prevent this anyway */
143 static int do_hardware_irq(struct ctl_table *table, int write, argument
155 if (write) /* permissions prevent this anyway */
170 static int do_hardware_dma(struct ctl_table *table, int write, argument
182 if (write) /* permission
197 do_hardware_modes(struct ctl_table *table, int write, void *result, size_t *lenp, loff_t *ppos) argument
[all...]
/linux-master/arch/arm/mach-omap2/
H A Dvc.c155 if (!voltdm->read || !voltdm->write) {
156 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
168 voltdm->write(vc_cmdval, vc->cmdval_reg);
210 voltdm->write(vc_bypass_value, vc_bypass_val_reg);
211 voltdm->write(vc_bypass_value | vc_valid, vc_bypass_val_reg);
290 vd->write(voltctrl, OMAP3_PRM_VOLTCTRL_OFFSET);
294 vd->write(c->voltsetup1,
299 vd->write(c->voltsetup2,
322 vd->write(val, OMAP4_PRM_VOLTCTRL_OFFSET);
346 voltdm->write(va
[all...]
/linux-master/drivers/hwtracing/stm/
H A Dp_basic.c30 .write = basic_write,
/linux-master/include/sound/
H A Dad1843.h16 int (*write)(void *chip, int reg, int val); member in struct:snd_ad1843
/linux-master/include/sound/ac97/
H A Dcontroller.h48 * @write: Write of a single AC97 register.
57 int (*write)(struct ac97_controller *adrv, int slot, member in struct:ac97_controller_ops
/linux-master/tools/leds/
H A Duledmon.c43 ret = write(fd, &uleds_dev, sizeof(uleds_dev));
45 perror("Failed to write to /dev/uleds");
/linux-master/sound/pci/ca0106/
H A Dca_midi.h45 void (*write)(struct snd_ca_midi *midi, int data, int idx); member in struct:snd_ca_midi
/linux-master/drivers/char/tpm/
H A Dtpm-dev.c65 .write = tpm_common_write,
/linux-master/arch/arm/common/
H A DbL_switcher_dummy_if.c47 .write = bL_switcher_write,
/linux-master/arch/arm/kernel/
H A Dearly_printk.c35 .write = early_console_write,

Completed in 266 milliseconds

1234567891011>>