diff options
author | Laurence Rochfort <laurence.rochfort@gmail.com> | 2016-05-18 21:07:45 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-08-15 19:14:53 +0200 |
commit | b6ed5a233aea3bd44243bb18d396941c4076e3dc (patch) | |
tree | 3692a4e4482e596ac34ac413c74d1cfa642e418e /drivers/staging/speakup | |
parent | 4875bb884e761acbd141785b44dbbd715bd71195 (diff) | |
download | blackbird-op-linux-b6ed5a233aea3bd44243bb18d396941c4076e3dc.tar.gz blackbird-op-linux-b6ed5a233aea3bd44243bb18d396941c4076e3dc.zip |
Staging: speakup: Remove space after cast
Fix the checkpatch.pl warning "No space is necessary after a cast".
Signed-off-by: Laurence Rochfort <laurence.rochfort@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup')
-rw-r--r-- | drivers/staging/speakup/devsynth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/speakup/devsynth.c b/drivers/staging/speakup/devsynth.c index 84989711ae67..58abd1d85105 100644 --- a/drivers/staging/speakup/devsynth.c +++ b/drivers/staging/speakup/devsynth.c @@ -34,7 +34,7 @@ static ssize_t speakup_file_write(struct file *fp, const char __user *buffer, synth_write(buf, bytes); spin_unlock_irqrestore(&speakup_info.spinlock, flags); } - return (ssize_t) nbytes; + return (ssize_t)nbytes; } static ssize_t speakup_file_read(struct file *fp, char __user *buf, |