Commit b6ed5a23 authored by Laurence Rochfort's avatar Laurence Rochfort Committed by Greg Kroah-Hartman

Staging: speakup: Remove space after cast

Fix the checkpatch.pl warning "No space is necessary after a cast".
Signed-off-by: default avatarLaurence Rochfort <laurence.rochfort@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4875bb88
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment