mirror of https://gitee.com/openkylin/linux.git
staging: speakup: spk_priv_keyinfo.h Space around operator
Make suggested checkpatch modification for CHECK: spaces preferred around that '+' Signed-off-by: Walt Feasel <waltfeasel@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1ce8eeb18f
commit
3e8855743a
|
@ -78,27 +78,27 @@
|
|||
|
||||
/* keys for setting variables, must be ordered same as the enum for var_ids */
|
||||
/* with dec being even and inc being 1 greater */
|
||||
#define SPELL_DELAY_DEC (VAR_START+0)
|
||||
#define SPELL_DELAY_INC (SPELL_DELAY_DEC+1)
|
||||
#define PUNC_LEVEL_DEC (SPELL_DELAY_DEC+2)
|
||||
#define PUNC_LEVEL_INC (PUNC_LEVEL_DEC+1)
|
||||
#define READING_PUNC_DEC (PUNC_LEVEL_DEC+2)
|
||||
#define READING_PUNC_INC (READING_PUNC_DEC+1)
|
||||
#define ATTRIB_BLEEP_DEC (READING_PUNC_DEC+2)
|
||||
#define ATTRIB_BLEEP_INC (ATTRIB_BLEEP_DEC+1)
|
||||
#define BLEEPS_DEC (ATTRIB_BLEEP_DEC+2)
|
||||
#define BLEEPS_INC (BLEEPS_DEC+1)
|
||||
#define RATE_DEC (BLEEPS_DEC+2)
|
||||
#define RATE_INC (RATE_DEC+1)
|
||||
#define PITCH_DEC (RATE_DEC+2)
|
||||
#define PITCH_INC (PITCH_DEC+1)
|
||||
#define VOL_DEC (PITCH_DEC+2)
|
||||
#define VOL_INC (VOL_DEC+1)
|
||||
#define TONE_DEC (VOL_DEC+2)
|
||||
#define TONE_INC (TONE_DEC+1)
|
||||
#define PUNCT_DEC (TONE_DEC+2)
|
||||
#define PUNCT_INC (PUNCT_DEC+1)
|
||||
#define VOICE_DEC (PUNCT_DEC+2)
|
||||
#define VOICE_INC (VOICE_DEC+1)
|
||||
#define SPELL_DELAY_DEC (VAR_START + 0)
|
||||
#define SPELL_DELAY_INC (SPELL_DELAY_DEC + 1)
|
||||
#define PUNC_LEVEL_DEC (SPELL_DELAY_DEC + 2)
|
||||
#define PUNC_LEVEL_INC (PUNC_LEVEL_DEC + 1)
|
||||
#define READING_PUNC_DEC (PUNC_LEVEL_DEC + 2)
|
||||
#define READING_PUNC_INC (READING_PUNC_DEC + 1)
|
||||
#define ATTRIB_BLEEP_DEC (READING_PUNC_DEC + 2)
|
||||
#define ATTRIB_BLEEP_INC (ATTRIB_BLEEP_DEC + 1)
|
||||
#define BLEEPS_DEC (ATTRIB_BLEEP_DEC + 2)
|
||||
#define BLEEPS_INC (BLEEPS_DEC + 1)
|
||||
#define RATE_DEC (BLEEPS_DEC + 2)
|
||||
#define RATE_INC (RATE_DEC + 1)
|
||||
#define PITCH_DEC (RATE_DEC + 2)
|
||||
#define PITCH_INC (PITCH_DEC + 1)
|
||||
#define VOL_DEC (PITCH_DEC + 2)
|
||||
#define VOL_INC (VOL_DEC + 1)
|
||||
#define TONE_DEC (VOL_DEC + 2)
|
||||
#define TONE_INC (TONE_DEC + 1)
|
||||
#define PUNCT_DEC (TONE_DEC + 2)
|
||||
#define PUNCT_INC (PUNCT_DEC + 1)
|
||||
#define VOICE_DEC (PUNCT_DEC + 2)
|
||||
#define VOICE_INC (VOICE_DEC + 1)
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue