Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: speakup: Add identifier name to function declaration arguments.

void (*read_buff_add) argument didn't have an identifier name,
adding a name to it like the rest of all functions' arguments.

Signed-off-by: Sam Muhammed <jane.pnx9@gmail.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Link: https://lore.kernel.org/r/b2a1ca962553194840d8cd2bf1f7d3174e3b1336.1585046066.git.jane.pnx9@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Sam Muhammed and committed by
Greg Kroah-Hartman
22dd4acc 7cf9a79d

+1 -1
+1 -1
drivers/staging/speakup/spk_types.h
··· 189 189 void (*flush)(struct spk_synth *synth); 190 190 int (*is_alive)(struct spk_synth *synth); 191 191 int (*synth_adjust)(struct st_var_header *var); 192 - void (*read_buff_add)(u_char); 192 + void (*read_buff_add)(u_char c); 193 193 unsigned char (*get_index)(struct spk_synth *synth); 194 194 struct synth_indexing indexing; 195 195 int alive;