Home
last modified time | relevance | path

Searched refs:octave (Results 1 – 5 of 5) sorted by relevance

/linux/Documentation/ABI/testing/
H A Dsysfs-driver-hid-prodikeys20 What: /sys/bus/hid/drivers/prodikeys/.../octave
25 Controls the octave shift modifier in the pc-midi driver.
26 The octave can be shifted via software up/down 2 octaves.
/linux/drivers/hid/
H A Dhid-prodikeys.c184 int octave = 0; in store_octave() local
186 if (sscanf(buf, "%d", &octave) > 0 && in store_octave()
187 octave >= PCMIDI_OCTAVE_MIN && octave <= PCMIDI_OCTAVE_MAX) { in store_octave()
188 dbg_hid("pcmidi sysfs write octave=%d\n", octave); in store_octave()
189 pm->midi_octave = octave; in store_octave()
195 static DEVICE_ATTR(octave, S_IRUGO | S_IWUSR | S_IWGRP, show_octave,
/linux/include/uapi/sound/
H A Dasound_fm.h58 unsigned char octave; /* 3 bits: what octave to play */ member
/linux/tools/testing/selftests/cgroup/
H A Dmemcg_protection.m3 % run as: octave-cli memcg_protection.m
/linux/sound/drivers/opl3/
H A Dopl3_synth.c423 reg_val |= (note->octave << 2) & OPL3_BLOCKNUM_MASK; in snd_opl3_play_note()