aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/speakup/devsynth.c
diff options
context:
space:
mode:
authorLaurence Rochfort <laurence.rochfort@gmail.com>2016-05-18 21:07:45 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-08-15 19:14:53 +0200
commitb6ed5a233aea3bd44243bb18d396941c4076e3dc (patch)
tree3692a4e4482e596ac34ac413c74d1cfa642e418e /drivers/staging/speakup/devsynth.c
parentstaging: dgnc: remove useless variable 'ch_intr_rx' (diff)
downloadlinux-dev-b6ed5a233aea3bd44243bb18d396941c4076e3dc.tar.xz
linux-dev-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/devsynth.c')
-rw-r--r--drivers/staging/speakup/devsynth.c2
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,