Home
last modified time | relevance | path

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

/Linux-v4.19/sound/synth/emux/
Demux_effect.c56 } parm_defs[EMUX_NUM_EFFECTS] = { variable
107 if (parm_defs[type].type & PARM_IS_SIGNED) in effect_set_byte()
112 if (effect < parm_defs[type].low) in effect_set_byte()
113 effect = parm_defs[type].low; in effect_set_byte()
114 else if (effect > parm_defs[type].high) in effect_set_byte()
115 effect = parm_defs[type].high; in effect_set_byte()
129 if (effect < parm_defs[type].low) in effect_set_word()
130 effect = parm_defs[type].low; in effect_set_word()
131 else if (effect > parm_defs[type].high) in effect_set_word()
132 effect = parm_defs[type].high; in effect_set_word()
[all …]