Browse Source

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>
Laurence Rochfort 9 years ago
parent
commit
b6ed5a233a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/speakup/devsynth.c

+ 1 - 1
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);
 		synth_write(buf, bytes);
 		spin_unlock_irqrestore(&speakup_info.spinlock, flags);
 		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,
 static ssize_t speakup_file_read(struct file *fp, char __user *buf,