/linux-4.4.14/sound/core/seq/ |
D | seq_midi_emul.c | 49 int note, int vel); 99 dest_channel = ev->data.note.channel; in snd_midi_process_event() 116 if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0) in snd_midi_process_event() 123 if (ev->data.note.note >= 128) in snd_midi_process_event() 129 if (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON) { in snd_midi_process_event() 131 ops->note_off(drv, ev->data.note.note, 0, chan); in snd_midi_process_event() 133 chan->note[ev->data.note.note] = SNDRV_MIDI_NOTE_ON; in snd_midi_process_event() 135 ops->note_on(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event() 138 if (! (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON)) in snd_midi_process_event() 141 note_off(ops, drv, chan, ev->data.note.note, ev->data.note.velocity); in snd_midi_process_event() [all …]
|
D | seq_midi_event.c | 314 ev->data.note.channel = dev->buf[0] & 0x0f; in note_event() 315 ev->data.note.note = dev->buf[1]; in note_event() 316 ev->data.note.velocity = dev->buf[2]; in note_event() 380 cmd = 0x80 | (type << 4) | (ev->data.note.channel & 0x0f); in snd_midi_event_decode() 416 buf[0] = ev->data.note.note & 0x7f; in note_decode() 417 buf[1] = ev->data.note.velocity & 0x7f; in note_decode()
|
D | seq_prioq.c | 357 if (ev->data.note.channel != info->channel) in prioq_remove_match()
|
/linux-4.4.14/sound/core/seq/oss/ |
D | seq_oss_event.c | 40 static int note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd… 41 static int note_off_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct sn… 42 static int set_note_event(struct seq_oss_devinfo *dp, int dev, int type, int ch, int note, int vel,… 111 return note_off_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event() 114 return note_on_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event() 122 q->n.chn, 0, q->n.note, ev); in old_event() 193 return note_on_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event() 196 return note_off_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event() 200 q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event() 286 note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd_seq_event … in note_on_event() argument [all …]
|
D | seq_oss_event.h | 43 unsigned char note; member 80 unsigned char note, parm; member
|
D | seq_oss_midi.c | 577 ossev.v.note = ev->data.note.note; in send_synth_event() 578 ossev.v.parm = ev->data.note.velocity; in send_synth_event() 579 ossev.v.chn = ev->data.note.channel; in send_synth_event()
|
D | seq_oss_device.h | 61 int note, vel; member
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-kernel-vmcoreinfo | 8 Shows physical address and size of vmcoreinfo ELF note. 9 First value contains physical address of note in hex and 10 second value contains the size of note in hex. This ELF 11 note info is parsed by second kernel and exported to user 12 space as part of ELF note in /proc/vmcore file. This note
|
D | sysfs-driver-hid-prodikeys | 16 note held by the pc-midi driver.
|
D | sysfs-devices-system-cpu | 197 Description: address and size of the percpu note. 200 note of cpu#. 202 crash_notes_size: size of the note of cpu#.
|
D | sysfs-platform-dell-laptop | 67 Also note that only some timeouts are supported and that
|
D | sysfs-platform-msi-laptop | 30 note that this file is constantly 0 if no Bluetooth hardware is
|
/linux-4.4.14/arch/s390/kernel/ |
D | crash_dump.c | 257 Elf64_Nhdr *note; in nt_init() local 260 note = (Elf64_Nhdr *)buf; in nt_init() 261 note->n_namesz = strlen(name) + 1; in nt_init() 262 note->n_descsz = d_len; in nt_init() 263 note->n_type = type; in nt_init() 266 memcpy(buf + len, name, note->n_namesz); in nt_init() 267 len = roundup(len + note->n_namesz, 4); in nt_init() 269 memcpy(buf + len, desc, note->n_descsz); in nt_init() 270 len = roundup(len + note->n_descsz, 4); in nt_init() 368 Elf64_Nhdr *note; in nt_s390_vx_low() local [all …]
|
D | vmlinux.lds.S | 17 note PT_NOTE FLAGS(0); /* ___ */ 37 NOTES :text :note
|
/linux-4.4.14/sound/drivers/opl3/ |
D | opl3_midi.c | 32 static void snd_opl3_note_off_unsafe(void *p, int note, int vel, 98 int note, struct snd_midi_channel *chan) in snd_opl3_calc_pitch() argument 100 int block = ((note / 12) & 0x07) - 1; in snd_opl3_calc_pitch() 101 int idx = (note % 12) + 2; in snd_opl3_calc_pitch() 254 snd_opl3_note_off_unsafe(opl3, vp->note, 0, in snd_opl3_timer_func() 294 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_opl3_note_on() argument 314 int key = note; in snd_opl3_note_on() 326 chan->number, chan->midi_program, note, vel); in snd_opl3_note_on() 335 prg = note; in snd_opl3_note_on() 353 snd_opl3_drum_switch(opl3, note, vel, 1, chan); in snd_opl3_note_on() [all …]
|
D | opl3_voice.h | 31 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan); 32 void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan); 33 void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan); 34 void snd_opl3_terminate_note(void *p, int note, struct snd_midi_channel *chan); 44 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int on_off, int vel, struct snd_midi_cha…
|
D | opl3_synth.c | 72 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note); 125 struct snd_dm_fm_note note; in snd_opl3_ioctl() local 126 if (copy_from_user(¬e, argp, sizeof(struct snd_dm_fm_note))) in snd_opl3_ioctl() 128 return snd_opl3_play_note(opl3, ¬e); in snd_opl3_ioctl() 400 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note) in snd_opl3_play_note() argument 410 if (note->voice >= ((opl3->fm_mode == SNDRV_DM_FM_MODE_OPL3) ? in snd_opl3_play_note() 415 if (note->voice < MAX_OPL2_VOICES) { in snd_opl3_play_note() 418 voice_offset = note->voice; in snd_opl3_play_note() 422 voice_offset = note->voice - MAX_OPL2_VOICES; in snd_opl3_play_note() 426 reg_val = (unsigned char) note->fnum; in snd_opl3_play_note() [all …]
|
D | opl3_drums.c | 185 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off, in snd_opl3_drum_switch() argument 194 if ((note < 35) || (note > 81)) in snd_opl3_drum_switch() 196 drum_mask = snd_opl3_drum_table[note - 35]; in snd_opl3_drum_switch()
|
/linux-4.4.14/arch/arm/vdso/ |
D | vdso.lds.S | 45 .note : { *(.note.*) } :text :note 61 *(.note.GNU-stack) 75 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux-4.4.14/sound/drivers/opl4/ |
D | opl4_synth.c | 312 static void snd_opl4_do_for_note(struct snd_opl4 *opl4, int note, struct snd_midi_channel *chan, in snd_opl4_do_for_note() argument 322 if (voice->chan == chan && voice->note == note) { in snd_opl4_do_for_note() 423 int note, pitch, octave; in snd_opl4_update_pitch() local 425 note = chan->drum_channel ? 60 : voice->note; in snd_opl4_update_pitch() 430 pitch = ((note - 60) << 7) * voice->sound->key_scaling / 100 + (60 << 7); in snd_opl4_update_pitch() 482 void snd_opl4_note_on(void *private_data, int note, int vel, struct snd_midi_channel *chan) in snd_opl4_note_on() argument 495 if (note >= regions->regions[i].key_min && in snd_opl4_note_on() 496 note <= regions->regions[i].key_max) { in snd_opl4_note_on() 509 voice[i]->note = note; in snd_opl4_note_on() 563 void snd_opl4_note_off(void *private_data, int note, int vel, struct snd_midi_channel *chan) in snd_opl4_note_off() argument [all …]
|
D | opl4_local.h | 163 int note; member 225 void snd_opl4_note_on(void *p, int note, int vel, struct snd_midi_channel *chan); 226 void snd_opl4_note_off(void *p, int note, int vel, struct snd_midi_channel *chan); 227 void snd_opl4_terminate_note(void *p, int note, struct snd_midi_channel *chan);
|
/linux-4.4.14/arch/arm64/kernel/vdso/ |
D | vdso.lds.S | 42 .note : { *(.note.*) } :text :note 62 *(.note.GNU-stack) 76 note PT_NOTE FLAGS(4); /* PF_R */
|
D | Makefile | 8 obj-vdso := gettimeofday.o note.o sigreturn.o
|
/linux-4.4.14/arch/mips/vdso/ |
D | vdso.lds.S | 47 .note : { *(.note.*) } :text :note 67 *(.note.GNU-stack) 91 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux-4.4.14/arch/alpha/kernel/ |
D | vmlinux.lds.S | 10 PHDRS { kernel PT_LOAD; note PT_NOTE; } 32 NOTES :kernel :note 69 .note 0 : { 70 *(.note)
|
/linux-4.4.14/arch/ia64/kernel/ |
D | crash.c | 34 struct elf_note *note = (struct elf_note *)buf; in append_elf_note() local 35 note->n_namesz = strlen(name) + 1; in append_elf_note() 36 note->n_descsz = data_len; in append_elf_note() 37 note->n_type = type; in append_elf_note() 38 buf += (sizeof(*note) + 3)/4; in append_elf_note() 39 memcpy(buf, name, note->n_namesz); in append_elf_note() 40 buf += (note->n_namesz + 3)/4; in append_elf_note()
|
D | gate.lds.S | 22 .note : { *(.note*) } :readable :note 87 note PT_NOTE FLAGS(4); /* PF_R */
|
D | vmlinux.lds.S | 17 note PT_NOTE; 30 *(.note) 68 NOTES :code :note /* put .notes in text and mark in PT_NOTE */
|
/linux-4.4.14/arch/x86/um/vdso/ |
D | vdso-layout.lds.S | 19 .note : { *(.note.*) } :text :note 62 note PT_NOTE FLAGS(4); /* PF_R */
|
D | Makefile | 11 vobjs-y := vdso-note.o um_vdso.o 49 CFLAGS_REMOVE_vdso-note.o = -pg -fprofile-arcs -ftest-coverage
|
/linux-4.4.14/arch/sh/kernel/vsyscall/ |
D | vsyscall.lds.S | 39 .note : { *(.note.*) } :text :note 67 note PT_NOTE FLAGS(4); /* PF_R */
|
D | Makefile | 8 targets += vsyscall-note.o vsyscall.lds 35 $(obj)/vsyscall-trapa.o $(obj)/vsyscall-note.o FORCE
|
/linux-4.4.14/arch/tile/kernel/vdso/ |
D | vdso.lds.S | 36 .note : { *(.note.*) } :text :note 70 note PT_NOTE FLAGS(4); /* PF_R */
|
/linux-4.4.14/Documentation/networking/ |
D | mac80211-auth-assoc-deauth.txt | 20 note over mac80211,driver 23 end note 50 note over mac80211,driver: cleanup like for authenticate 61 note over mac80211: init rate control 73 note left of userspace: associated now 76 note over userspace 79 end note
|
D | smc9.txt | 11 Things to note about installation:
|
D | alias.txt | 21 Please note: The route always points to the base interface.
|
D | netdev-FAQ.txt | 81 and note the top of the "tags" section. If it is rc1, it is early 93 bug-fix net content. If you don't use git, then note the only magic in 145 Before you jump to go do the above, do note that the normal stable rules
|
D | vortex.txt | 18 Please note the 'Reporting and Diagnosing Problems' section at the end 318 Cisco interoperability note from Walter Wong <wcw+@CMU.EDU>: 320 On a side note, adding HAS_NWAY seems to share a problem with the
|
/linux-4.4.14/sound/oss/ |
D | midi_synth.c | 283 midi_synth_kill_note(int dev, int channel, int note, int velocity) in midi_synth_kill_note() argument 288 if (note < 0 || note > 127) in midi_synth_kill_note() 306 if (!prefix_cmd(orig_dev, note)) in midi_synth_kill_note() 309 midi_outc(orig_dev, note); in midi_synth_kill_note() 329 midi_outc(orig_dev, note); in midi_synth_kill_note() 340 midi_outc(orig_dev, note); in midi_synth_kill_note() 373 midi_synth_start_note(int dev, int channel, int note, int velocity) in midi_synth_start_note() argument 378 if (note < 0 || note > 127) in midi_synth_start_note() 396 if (!prefix_cmd(orig_dev, note)) in midi_synth_start_note() 398 midi_outc(orig_dev, note); in midi_synth_start_note() [all …]
|
D | sequencer.c | 76 static int seq_queue(unsigned char *note, char nonblock); 327 static int seq_queue(unsigned char *note, char nonblock) in seq_queue() argument 352 memcpy(&queue[qtail * EV_SZ], note, EV_SZ); in seq_queue() 415 static int find_voice(int dev, int chn, int note) in find_voice() argument 420 key = (chn << 8) | (note + 1); in find_voice() 427 static int alloc_voice(int dev, int chn, int note) in alloc_voice() argument 432 key = (chn << 8) | (note + 1); in alloc_voice() 434 voice = synth_devs[dev]->alloc_voice(dev, chn, note, in alloc_voice() 447 #define note event_rec[4] in seq_chn_voice_event() macro 462 voice = find_voice(dev, chn, note); in seq_chn_voice_event() [all …]
|
D | midi_synth.h | 3 int midi_synth_kill_note (int dev, int channel, int note, int velocity); 5 int midi_synth_start_note (int dev, int channel, int note, int volume);
|
D | dev_table.h | 268 int (*kill_note) (int dev, int voice, int note, int velocity); 269 int (*start_note) (int dev, int voice, int note, int velocity); 280 int (*alloc_voice) (int dev, int chn, int note, struct voice_alloc_info *alloc);
|
D | opl3.c | 85 static int opl3_kill_note(int dev, int voice, int note, int velocity); 268 static int opl3_kill_note (int devno, int voice, int note, int velocity) in opl3_kill_note() argument 457 static int opl3_start_note (int dev, int voice, int note, int volume) in opl3_start_note() argument 473 if (note == 255) /* in opl3_start_note() 647 freq = devc->voc[voice].orig_freq = note_to_freq(note) / 1000; in opl3_start_note() 998 static int opl3_alloc_voice(int dev, int chn, int note, struct voice_alloc_info *alloc) in opl3_alloc_voice() argument
|
/linux-4.4.14/arch/s390/kernel/vdso64/ |
D | vdso64.lds.S | 23 .note : { *(.note.*) } :text :note 98 *(.note.GNU-stack) 118 note PT_NOTE FLAGS(4); /* PF_R */
|
D | Makefile | 3 obj-vdso64 = gettimeofday.o clock_getres.o clock_gettime.o note.o
|
/linux-4.4.14/arch/s390/kernel/vdso32/ |
D | vdso32.lds.S | 23 .note : { *(.note.*) } :text :note 98 *(.note.GNU-stack) 118 note PT_NOTE FLAGS(4); /* PF_R */
|
D | Makefile | 3 obj-vdso32 = gettimeofday.o clock_getres.o clock_gettime.o note.o
|
/linux-4.4.14/arch/x86/entry/vdso/ |
D | vdso-layout.lds.S | 75 .note : { *(.note.*) } :text :note 116 note PT_NOTE FLAGS(4); /* PF_R */
|
D | Makefile | 14 vobjs-y := vdso-note.o vclock_gettime.o vgetcpu.o 77 CFLAGS_REMOVE_vdso-note.o = -pg 131 targets += vdso32/note.o vdso32/vclock_gettime.o vdso32/system_call.o 152 $(obj)/vdso32/note.o \
|
/linux-4.4.14/arch/powerpc/kernel/vdso32/ |
D | vdso32.lds.S | 27 .note : { *(.note.*) } :text :note 110 *(.note.GNU-stack) 129 note PT_NOTE FLAGS(4); /* PF_R */
|
D | Makefile | 5 obj-vdso32 = sigtramp.o gettimeofday.o datapage.o cacheflush.o note.o \
|
/linux-4.4.14/arch/powerpc/kernel/vdso64/ |
D | vdso64.lds.S | 27 .note : { *(.note.*) } :text :note 109 *(.note.GNU-stack) 129 note PT_NOTE FLAGS(4); /* PF_R */
|
D | Makefile | 3 obj-vdso64 = sigtramp.o gettimeofday.o datapage.o cacheflush.o note.o getcpu.o
|
/linux-4.4.14/include/sound/ |
D | seq_midi_emul.h | 50 unsigned char note[128]; /* Current status for all notes */ member 83 void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan); 84 …void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release … 85 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan); 86 …void (*note_terminate)(void *private_data, int note, struct snd_midi_channel *chan); /* terminate …
|
D | emux_synth.h | 179 unsigned char note; /* Note currently assigned to this voice */ member
|
D | opl3.h | 291 unsigned char note; /* Note currently assigned to this voice */ member
|
/linux-4.4.14/Documentation/RCU/ |
D | RTFP.txt | 317 ,note="Available: 419 ,note="private communication" 437 ,note="Available: 580 ,note="Available: 598 ,note="Available: 613 ,note="Available: 643 ,note="Available: 658 ,note="Available: 671 ,note="Available: 685 ,note="Available: [all …]
|
D | rculist_nulls.txt | 47 And note the traditional hlist_for_each_entry_rcu() misses this smp_rmb() : 80 * Please note that new inserts are done at the head of list, 157 * Please note that new inserts are done at the head of list,
|
D | rcuref.txt | 4 Please note that the percpu-ref feature is likely your first
|
D | stallwarn.txt | 79 will normally be followed by stack dumps for each CPU. Please note that 94 interact. Please note that it is not possible to entirely eliminate this 252 warning. Note that SRCU does -not- have CPU stall warnings. Please note
|
D | lockdep.txt | 5 critical section. Each flavor of RCU is tracked separately (but note
|
D | NMI-RCU.txt | 97 Important note: for this to work, the architecture in question must
|
/linux-4.4.14/sound/synth/emux/ |
D | emux_voice.h | 47 void snd_emux_note_on(void *p, int note, int vel, struct snd_midi_channel *chan); 48 void snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan); 49 void snd_emux_key_press(void *p, int note, int vel, struct snd_midi_channel *chan); 50 void snd_emux_terminate_note(void *p, int note, struct snd_midi_channel *chan);
|
D | emux_synth.c | 44 static void terminate_note1(struct snd_emux *emu, int note, 60 snd_emux_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_note_on() argument 77 key = note; /* remember the original note */ in snd_emux_note_on() 78 nvoices = get_zone(emu, port, ¬e, vel, chan, table); in snd_emux_note_on() 113 vp->note = note; in snd_emux_note_on() 159 snd_emux_note_off(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_note_off() argument 179 vp->chan == chan && vp->key == note) { in snd_emux_note_off() 236 snd_emux_key_press(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_emux_key_press() argument 256 vp->chan == chan && vp->key == note) { in snd_emux_key_press() 378 terminate_note1(struct snd_emux *emu, int note, struct snd_midi_channel *chan, int free) in terminate_note1() argument [all …]
|
D | soundfont.c | 956 int note, sample_id; in load_guspatch() local 1035 note = freq_to_note(patch.base_note); in load_guspatch() 1036 zone->v.root = note / 100; in load_guspatch() 1037 zone->v.tune = -(note % 100); in load_guspatch()
|
/linux-4.4.14/drivers/hid/ |
D | hid-prodikeys.c | 51 unsigned char note; member 218 unsigned char status, unsigned char note, unsigned char velocity) in pcmidi_send_note() argument 224 buffer[1] = note; in pcmidi_send_note() 246 pcmidi_send_note(pms->pm, pms->status, pms->note, pms->velocity); in pcmidi_sustained_note_release() 345 unsigned char status, note, velocity; in pcmidi_handle_report3() local 349 note = data[j*2+1]; in pcmidi_handle_report3() 352 if (note < 0x81) { /* note on */ in pcmidi_handle_report3() 354 note = note - 0x54 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3() 360 note = note - 0x94 + PCMIDI_MIDDLE_C + in pcmidi_handle_report3() 368 pms->note = note; in pcmidi_handle_report3() [all …]
|
/linux-4.4.14/arch/ia64/scripts/ |
D | check-segrel.lds | 4 .note : { *(.note*) }
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | fadump.c | 487 struct elf_note note; in fadump_append_elf_note() local 489 note.n_namesz = strlen(name) + 1; in fadump_append_elf_note() 490 note.n_descsz = data_len; in fadump_append_elf_note() 491 note.n_type = type; in fadump_append_elf_note() 492 memcpy(buf, ¬e, sizeof(note)); in fadump_append_elf_note() 493 buf += (sizeof(note) + 3)/4; in fadump_append_elf_note() 494 memcpy(buf, name, note.n_namesz); in fadump_append_elf_note() 495 buf += (note.n_namesz + 3)/4; in fadump_append_elf_note() 496 memcpy(buf, data, note.n_descsz); in fadump_append_elf_note() 497 buf += (note.n_descsz + 3)/4; in fadump_append_elf_note() [all …]
|
/linux-4.4.14/kernel/ |
D | kexec_core.c | 953 struct elf_note note; in append_elf_note() local 955 note.n_namesz = strlen(name) + 1; in append_elf_note() 956 note.n_descsz = data_len; in append_elf_note() 957 note.n_type = type; in append_elf_note() 958 memcpy(buf, ¬e, sizeof(note)); in append_elf_note() 959 buf += (sizeof(note) + 3)/4; in append_elf_note() 960 memcpy(buf, name, note.n_namesz); in append_elf_note() 961 buf += (note.n_namesz + 3)/4; in append_elf_note() 962 memcpy(buf, data, note.n_descsz); in append_elf_note() 963 buf += (note.n_descsz + 3)/4; in append_elf_note() [all …]
|
/linux-4.4.14/arch/alpha/boot/ |
D | bootloader.lds | 22 .note 0 : { *(.note) }
|
/linux-4.4.14/arch/cris/boot/ |
D | Makefile | 5 objcopyflags-$(CONFIG_ETRAX_ARCH_V10) += -R .note -R .comment 6 objcopyflags-$(CONFIG_ETRAX_ARCH_V32) += --remove-section=.bss --remove-section=.note.gnu.build-id
|
/linux-4.4.14/Documentation/fmc/ |
D | API.txt | 23 The data structure that describe a device is detailed in *note FMC 24 Device::, the one that describes a driver is detailed in *note FMC 25 Driver::. Please note that structures of type fmc_device must be 42 *note The API Offered by Carriers:: and also scans the memory area for
|
D | fmc-write-eeprom.txt | 14 write-support through sysfs. See *note Accessing the EEPROM::. 52 Please note that you'll most likely want to use SDBFS to build your 58 fmc-fakedev.ko module (see *note fmc-fakedev::). Whenever you change 60 after two seconds. Please note, however, that if fmc-write-eeprom is 97 fmc-write-eeprom (See *note fmc-write-eeprom::), but the procedure is
|
D | carrier.txt | 21 Please note that all the machinery is in place but some details may 91 Please note that the carrier should read its own EEPROM memory before 168 index in the associated array. See *note Module Parameters:: in in 173 this way). Such "generic parameters" are documented in *note 175 `fmc-trivial.ko', described in *note fmc-trivial::. 185 the `gateware=' parameter, see *note Module Parameters::. Note: 202 its current value if it is configured as input. See *note The GPIO
|
D | mezzanine.txt | 31 (see *note The GPIO Abstraction::), although the name match is not 47 vendor) and the device (see *note FMC Identification::); for 122 Please note that not all sub-modules support all of those parameters.
|
D | FMC-and-SDB.txt | 68 SDB support for FMC is described in *note FMC Identification:: and 69 *note SDB Support::
|
D | fmc-fakedev.txt | 12 described in *note FMC Identification::),, which by default is
|
/linux-4.4.14/arch/arc/boot/ |
D | Makefile | 7 OBJCOPYFLAGS= -O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/linux-4.4.14/arch/unicore32/ |
D | Makefile | 21 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment -S
|
/linux-4.4.14/arch/microblaze/boot/ |
D | Makefile | 7 OBJCOPYFLAGS := -R .note -R .comment -R .note.gnu.build-id -O binary
|
/linux-4.4.14/arch/um/include/asm/ |
D | common.lds.S | 18 .note : { *(.note.*) }
|
/linux-4.4.14/arch/frv/boot/ |
D | Makefile | 20 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment
|
/linux-4.4.14/include/linux/ |
D | elfnote.h | 42 .pushsection .note.name, flags,@note ; \
|
/linux-4.4.14/arch/parisc/kernel/ |
D | vmlinux.lds.S | 146 .note 0 : { *(.note) }
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c-ocores.txt | 7 - clocks : handle to the controller clock; see the note below. 10 see the note below. Mutually exclusive with clocks 15 - clock-frequency : frequency of bus clock in Hz; see the note below.
|
/linux-4.4.14/drivers/pci/hotplug/ |
D | acpiphp_ibm.c | 256 struct notification *note = context; in ibm_handle_events() local 262 acpi_bus_generate_netlink_event(note->device->pnp.device_class, in ibm_handle_events() 263 dev_name(¬e->device->dev), in ibm_handle_events() 264 note->event, detail); in ibm_handle_events() 266 note->event = event; in ibm_handle_events()
|
/linux-4.4.14/arch/sparc/boot/ |
D | Makefile | 18 cmd_strip = $(STRIP) -R .comment -R .note -K sun4u_init -K _end -K _start $< -o $@ 42 OBJCOPYFLAGS_image.bin := -S -O binary -R .note -R .comment
|
/linux-4.4.14/arch/mips/kernel/ |
D | vmlinux.lds.S | 21 note PT_NOTE FLAGS(4); /* R__ */ 79 #define NOTES_HEADER :note
|
/linux-4.4.14/include/uapi/linux/ |
D | soundcard.h | 1128 #define _CHN_VOICE(dev, event, chn, note, parm) \ argument 1134 _seqbuf[_seqbufptr+4] = (note);\ 1140 #define SEQ_START_NOTE(dev, chn, note, vol) \ argument 1141 _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) 1143 #define SEQ_STOP_NOTE(dev, chn, note, vol) \ argument 1144 _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) 1146 #define SEQ_KEY_PRESSURE(dev, chn, note, pressure) \ argument 1147 _CHN_VOICE(dev, MIDI_KEY_PRESSURE, chn, note, pressure)
|
/linux-4.4.14/Documentation/hwmon/ |
D | sch5636 | 32 An application note describing the Theseus' registers, as well as an 33 application note describing the protocol for communicating with the
|
D | ltc4245 | 75 in9_input GPIO voltage data (see note 1) 76 in10_input GPIO voltage data (see note 1) 77 in11_input GPIO voltage data (see note 1)
|
D | sch5627 | 25 through an embedded microcontroller. An application note describing the
|
D | max20751 | 9 Application note: http://pdfserv.maximintegrated.com/en/an/AN5941.pdf
|
D | userspace-tools | 20 Get lm-sensors from project web site. Please note, you need only userspace
|
D | k8temp | 21 Please note that you will need at least lm-sensors 2.10.1 for proper userspace
|
D | adm1025 | 40 register can be used to define how the chip is hardwired. Please note that
|
D | k10temp | 63 Please note that it is defined as a relative value; to quote the AMD manual:
|
/linux-4.4.14/arch/mn10300/ |
D | Makefile | 22 OBJCOPYFLAGS := -O binary -R .note -R .comment -R .GCC-command-line -R .note.gnu.build-id -S
|
/linux-4.4.14/arch/arm64/ |
D | Makefile | 15 OBJCOPYFLAGS :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
|
D | Kconfig | 231 Please note that this does not necessarily enable the workaround, 252 Please note that this does not necessarily enable the workaround, 274 Please note that this option does not necessarily enable the 295 Please note that this does not necessarily enable the workaround, 313 Please note that this does not necessarily enable the workaround, 334 Please note that this does not necessarily enable the workaround, 355 Please note that this does not necessarily enable the workaround,
|
/linux-4.4.14/tools/perf/bench/ |
D | mem-memcpy-x86-64-asm.S | 10 .section .note.GNU-stack,"",@progbits
|
D | mem-memset-x86-64-asm.S | 11 .section .note.GNU-stack,"",@progbits
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | hdspm.txt | 331 note: ALSA-standard 336 note: ALSA-standard 341 note: ALSA-standard 346 note: Use only when the application supports this (which is a special case). 352 note: each playback channel is mixed to the same numbered output 362 note: here the analog output is enabled (but not routed).
|
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/ |
D | Kconfig | 10 ath6kl_core. Please note that AR6002 and AR6001 are not 21 Please note that AR6002 and AR6001 are not supported by this
|
/linux-4.4.14/arch/x86/realmode/rm/ |
D | realmode.lds.S | 70 *(.note*)
|
/linux-4.4.14/arch/x86/kernel/ |
D | vmlinux.lds.S | 79 note PT_NOTE FLAGS(0); /* ___ */ 111 NOTES :text :note
|
/linux-4.4.14/Documentation/w1/masters/ |
D | omap-hdq | 40 Please note to load both the modules with a different ID if required, but note
|
/linux-4.4.14/arch/h8300/boot/ |
D | Makefile | 8 OBJCOPYFLAGS_zImage := -O binary -R .note -R .comment -R .stab -R .stabstr -S
|
/linux-4.4.14/arch/openrisc/ |
D | Makefile | 23 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/arch/mips/boot/compressed/ |
D | ld.script | 55 *(.note)
|
/linux-4.4.14/arch/xtensa/boot/ |
D | Makefile | 34 OBJCOPYFLAGS = --strip-all -R .comment -R .note.gnu.build-id -O binary
|
/linux-4.4.14/Documentation/ |
D | kselftest.txt | 27 - note that some tests will require root privileges. 54 - note that some tests will require root privileges.
|
D | braille-console.txt | 29 console=brl,... will be discarded. Also note that it does not interfere with
|
D | kref.txt | 296 But note that the struct kref member needs to remain in valid memory for a 299 before using kfree, but note that synchronize_rcu() may sleep for a
|
D | sparse.txt | 38 One small note: the constant integer "0" is special. You can use a
|
D | mailbox.txt | 5 drivers for the API. But before we start, let us note that the
|
/linux-4.4.14/arch/x86/boot/ |
D | setup.ld | 54 /DISCARD/ : { *(.note*) }
|
D | Makefile | 74 OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S
|
/linux-4.4.14/drivers/net/wireless/b43legacy/ |
D | Kconfig | 98 Please note that PIO transfers are slow (compared to DMA). 100 Also note that not all devices of the b43legacy series support PIO.
|
/linux-4.4.14/Documentation/sound/oss/ |
D | Tropez+ | 16 Things to note:
|
D | ultrasound | 15 no_wave_dma Set to disable DMA usage for wavetable (see note)
|
/linux-4.4.14/arch/m32r/ |
D | Makefile | 11 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/Documentation/isdn/ |
D | README.FAQ | 5 Please note that there is a big FAQ available in the isdn4k-utils.
|
D | HiSax.cert | 15 However, if you wish to modify the HiSax sources, please note the following: 76 If you wish to change the sources, go ahead; but note that then the
|
/linux-4.4.14/include/uapi/sound/ |
D | asequencer.h | 196 unsigned char note; member 285 struct snd_seq_ev_note note; member
|
/linux-4.4.14/tools/power/acpi/ |
D | Makefile.config | 91 STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | wm8962.txt | 21 performed. And note that only the value within [0x0, 0xffff] is valid.
|
/linux-4.4.14/net/wimax/ |
D | Kconfig | 14 Please note that most of these devices require signing up
|
/linux-4.4.14/arch/metag/ |
D | Makefile | 17 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/fs/ |
D | binfmt_elf.c | 1389 static void fill_note(struct memelfnote *note, const char *name, int type, in fill_note() argument 1392 note->name = name; in fill_note() 1393 note->type = type; in fill_note() 1394 note->datasz = sz; in fill_note() 1395 note->data = data; in fill_note() 1479 static void fill_auxv_note(struct memelfnote *note, struct mm_struct *mm) in fill_auxv_note() argument 1486 fill_note(note, "CORE", NT_AUXV, i * sizeof(elf_addr_t), auxv); in fill_auxv_note() 1489 static void fill_siginfo_note(struct memelfnote *note, user_siginfo_t *csigdata, in fill_siginfo_note() argument 1496 fill_note(note, "CORE", NT_SIGINFO, sizeof(*csigdata), csigdata); in fill_siginfo_note() 1511 static int fill_files_note(struct memelfnote *note) in fill_files_note() argument [all …]
|
D | binfmt_elf_fdpic.c | 1352 static inline void fill_note(struct memelfnote *note, const char *name, int type, in fill_note() argument 1355 note->name = name; in fill_note() 1356 note->type = type; in fill_note() 1357 note->datasz = sz; in fill_note() 1358 note->data = data; in fill_note()
|
/linux-4.4.14/Documentation/ko_KR/ |
D | stable_api_nonsense.txt | 8 Please also note that the purpose of this file is to be easier to
|
D | HOWTO | 7 Please also note that the purpose of this file is to be easier to
|
/linux-4.4.14/arch/avr32/boot/images/ |
D | Makefile | 11 OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note.gnu.build-id
|
/linux-4.4.14/fs/befs/ |
D | Kconfig | 9 attributes. (Also note that this driver doesn't make those features
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | currituck.dts | 147 /* Legacy interrupts (note the weird polarity, the bridge seems 184 /* Legacy interrupts (note the weird polarity, the bridge seems 221 /* Legacy interrupts (note the weird polarity, the bridge seems
|
D | akebono.dts | 275 /* Legacy interrupts (note the weird polarity, the bridge seems 315 /* Legacy interrupts (note the weird polarity, the bridge seems 355 /* Legacy interrupts (note the weird polarity, the bridge seems 395 /* Legacy interrupts (note the weird polarity, the bridge seems
|
D | redwood.dts | 263 /* Legacy interrupts (note the weird polarity, the bridge seems 304 /* Legacy interrupts (note the weird polarity, the bridge seems 345 /* Legacy interrupts (note the weird polarity, the bridge seems
|
D | katmai.dts | 347 /* Legacy interrupts (note the weird polarity, the bridge seems 388 /* Legacy interrupts (note the weird polarity, the bridge seems 429 /* Legacy interrupts (note the weird polarity, the bridge seems
|
D | makalu.dts | 296 /* Legacy interrupts (note the weird polarity, the bridge seems 337 /* Legacy interrupts (note the weird polarity, the bridge seems
|
D | icon.dts | 343 /* Legacy interrupts (note the weird polarity, the bridge seems 384 /* Legacy interrupts (note the weird polarity, the bridge seems
|
D | kilauea.dts | 350 /* Legacy interrupts (note the weird polarity, the bridge seems 391 /* Legacy interrupts (note the weird polarity, the bridge seems
|
/linux-4.4.14/drivers/media/pci/saa7146/ |
D | Kconfig | 7 grabber card by Hexium. Please note that the Gemini Dual
|
/linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
D | p1020rdb-pc_camp_core0.dts | 9 * Please note to add "-b 0" for core0's dts compiling.
|
D | mpc8572ds_camp_core1.dts | 8 * Please note to add "-b 1" for core1's dts compiling.
|
D | p1020rdb-pc_camp_core1.dts | 8 * Please note to add "-b 1" for core1's dts compiling.
|
/linux-4.4.14/crypto/ |
D | ansi_cprng.c | 58 static void hexdump(char *note, unsigned char *buf, unsigned int len) in hexdump() argument 61 printk(KERN_CRIT "%s", note); in hexdump()
|
/linux-4.4.14/arch/sh/ |
D | Makefile | 80 OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment \
|
/linux-4.4.14/Documentation/crypto/ |
D | descore-readme.txt | 62 compatible packages below. (note that the first two timings above 185 note that 99% of C programs make these assumptions. 202 note that if you select the wrong one, the des code will still work; 208 note that gcc is smart enough to translate the ROL/R macros into 227 shoehorned 386 version. note that with this release of desCore, gcc is able 307 two bits of each byte are not used. note that these two bits 342 note that i have included a kerberos-compatible interface in desUtil.c
|
/linux-4.4.14/tools/perf/arch/x86/tests/ |
D | regs_load.S | 98 .section .note.GNU-stack,"",@progbits
|
/linux-4.4.14/Documentation/ja_JP/ |
D | stable_kernel_rules.txt | 8 Please also note that purpose of this file is easier to read for non
|
D | stable_api_nonsense.txt | 9 Please also note that the purpose of this file is to be easier to read
|
D | SubmitChecklist | 9 Please also note that the purpose of this file is to be easier to read
|
/linux-4.4.14/arch/parisc/ |
D | Makefile | 45 OBJCOPY_FLAGS =-O binary -R .note -R .comment -S
|
/linux-4.4.14/arch/cris/ |
D | Makefile | 49 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/drivers/mtd/spi-nor/ |
D | Kconfig | 21 Please note that some tools/drivers/filesystems may not work with
|
/linux-4.4.14/arch/mips/boot/ |
D | Makefile | 21 drop-sections := .reginfo .mdebug .comment .note .pdr .options .MIPS.options
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | chosen.txt | 43 Implementation note: Linux will look for the property "linux,stdout-path" or
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/omap/ |
D | timer.txt | 4 - compatible: Should be set to one of the below. Please note that
|
/linux-4.4.14/Documentation/x86/x86_64/ |
D | uefi.txt | 1 General note on [U]EFI x86_64 support
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | gpmi-nand.txt | 24 However, note that if this strength is not
|
/linux-4.4.14/Documentation/devicetree/bindings/ata/ |
D | ahci-platform.txt | 23 Please note that when using "generic-ahci" you must also specify a SoC specific
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | dma.txt | 20 However, see note below. 87 However, see note below.
|
/linux-4.4.14/Documentation/usb/ |
D | gadget_multi.txt | 17 Please note that if you use non-standard configuration (that is enable 73 Please note, that while testing we encountered some issues[6] when
|
/linux-4.4.14/Documentation/video4linux/ |
D | fimc.txt | 78 video device, it has no media pads. However please note the mem-to-mem and 138 (note that udev, if present, might still have rearranged the video nodes),
|
D | cpia2_overview.txt | 20 try to make note of all of these cases.
|
/linux-4.4.14/Documentation/devicetree/bindings/rtc/ |
D | isil,isl12057.txt | 41 Example isl12057 node with IRQ#2 pin connected to main SoC via MPP6 (note
|
/linux-4.4.14/drivers/staging/ |
D | Kconfig | 8 them. Please note that these drivers are under heavy
|
/linux-4.4.14/Documentation/blackfin/ |
D | bfin-gpio-notes.txt | 6 * Created: $Id: bfin-gpio-note.txt 2008-11-24 16:42 grafyang $
|
/linux-4.4.14/drivers/media/pci/saa7134/ |
D | saa7134-tvaudio.c | 253 char *note) in tvaudio_setmode() argument 265 if (note) in tvaudio_setmode() 267 note, audio->name, in tvaudio_setmode()
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | mmc.txt | 20 - cd-inverted: when present, polarity on the CD line is inverted. See the note 22 - wp-inverted: when present, polarity on the WP line is inverted. See the note
|
/linux-4.4.14/Documentation/laptops/ |
D | sonypi.txt | 40 Please note that this driver was created by reverse engineering the Windows 42 specs for its laptops. If someone convinces them to do so, drop me a note.
|
/linux-4.4.14/arch/blackfin/ |
D | Makefile | 13 OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
/linux-4.4.14/Documentation/arm/ |
D | mem_alignment | 22 Please note that randomly changing the behaviour without good thought is
|
D | memory.txt | 81 Please note that mappings which collide with the above areas may result
|
/linux-4.4.14/arch/x86/ |
D | Makefile_32.cpu | 23 # Please note, that patches that add -march=athlon-xp and friends are pointless.
|
/linux-4.4.14/Documentation/EDID/ |
D | HOWTO.txt | 33 Makefile. Please note that the EDID data structure expects the timing
|
/linux-4.4.14/Documentation/blockdev/ |
D | cciss.txt | 101 Additionally, note that the driver will engage the SCSI core at init 133 driver to make note of any new or removed sequential access devices
|
/linux-4.4.14/Documentation/leds/ |
D | ledtrig-transient.txt | 38 the state. Please note that there is no explicit interaction between the 106 Please note that current LED state is not checked prior to
|
/linux-4.4.14/arch/arm/mach-pxa/ |
D | sleep.S | 127 @ note, turbo is not preserved over sleep so there is no
|
/linux-4.4.14/arch/c6x/lib/ |
D | remu.S | 59 ;; RETURN A may happen here (note: must happen before the next branch)
|
D | divremu.S | 57 ;; RETURN A may happen here (note: must happen before the next branch)
|
D | divu.S | 69 ;; RETURN A may happen here (note: must happen before the next branch)
|
/linux-4.4.14/Documentation/device-mapper/ |
D | era.txt | 71 - Make a note of the current era in its status line
|
/linux-4.4.14/Documentation/cpuidle/ |
D | sysfs.txt | 79 * disable : Option to disable this idle state (bool) -> see note below
|
/linux-4.4.14/Documentation/pps/ |
D | pps.txt | 186 Please, note that to compile userland programs you need the file timepps.h 222 Please note that parallel port interrupt occurs only on high->low transition,
|
/linux-4.4.14/Documentation/cgroups/ |
D | pids.txt | 76 processes from being forked at all (note that the shell itself counts towards
|
/linux-4.4.14/Documentation/scsi/ |
D | arcmsr_spec.txt | 120 ** note ..command block length shouldn't > 2040 bytes, 226 ** note page0 1st 2 byte must be 468 ** note .... no response data available
|
/linux-4.4.14/arch/nios2/platform/ |
D | Kconfig.platform | 26 Please note that this address is used directly so you have to manually
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | coresight.txt | 42 * compatible: Currently supported value is (note the absence of the
|
/linux-4.4.14/Documentation/arm/Atmel/ |
D | README | 10 It is important to note that the Atmel | SMART ARM-based MPU product line is
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | fpu-low.S | 160 # - note that an FPU Operational exception might occur during this process
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | rpc-server-gss.txt | 7 server and the NFS client's NFSv4.0 callback server. (But note that
|
/linux-4.4.14/Documentation/powerpc/ |
D | dscr.txt | 33 NOTE: Please note here that the system wide global DSCR value never
|
/linux-4.4.14/Documentation/frv/ |
D | kernel-ABI.txt | 172 the ICC2 condition code flags to note virtual disablement, such that if we 173 then do take an interrupt, we note the flag, really disable interrupts, set
|
/linux-4.4.14/arch/sparc/lib/ |
D | checksum_32.S | 353 10: EXT(5b, 10b, 20f) ! note for exception handling 378 12: EXT(cctbl, 12b, 22f) ! note for exception table handling 389 11: EXT(ccdbl, 11b, 21f) ! note for exception table handling
|
/linux-4.4.14/Documentation/filesystems/ |
D | path-lookup.txt | 168 of 'B' must succeed (note the reverse is not true). 246 +---------------------+ rcu-walk begins here, we note d_seq, check the 254 | name: "home" | hash lookup, then note d_seq and compare name 326 Final note:
|
D | dax.txt | 94 reads/writes to those memory ranges from a non-DAX file will fail (note
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | info.txt | 82 Working root directory (note, that server chroots there, so you have to have appropriate permission…
|
/linux-4.4.14/Documentation/devicetree/bindings/reserved-memory/ |
D | reserved-memory.txt | 67 Linux implementation note:
|