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>
This commit is contained in:
Laurence Rochfort 2016-05-18 21:07:45 +01:00 committed by Greg Kroah-Hartman
parent 4875bb884e
commit b6ed5a233a
1 changed files with 1 additions and 1 deletions

View File

@ -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,