From: Derek Robson Date: Sat, 4 Feb 2017 04:49:00 +0000 (+1300) Subject: Drivers: staging: speakup: spk_priv.h - style fix X-Git-Tag: v4.11-rc1~116^2~139 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cb23ebdfa6a491cf2173323059d846b4c5c9264e;p=platform%2Fkernel%2Flinux-exynos.git Drivers: staging: speakup: spk_priv.h - style fix Changed function definition argument to have identifier name. found using checkpatch Signed-off-by: Derek Robson Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/speakup/spk_priv.h b/drivers/staging/speakup/spk_priv.h index 98c4b6f..d5aa41d 100644 --- a/drivers/staging/speakup/spk_priv.h +++ b/drivers/staging/speakup/spk_priv.h @@ -64,8 +64,8 @@ void spk_synth_flush(struct spk_synth *synth); int spk_synth_is_alive_nop(struct spk_synth *synth); int spk_synth_is_alive_restart(struct spk_synth *synth); void synth_printf(const char *buf, ...); -int synth_request_region(u_long, u_long); -int synth_release_region(u_long, u_long); +int synth_request_region(unsigned long start, unsigned long n); +int synth_release_region(unsigned long start, unsigned long n); int synth_add(struct spk_synth *in_synth); void synth_remove(struct spk_synth *in_synth);