staging: dgap: Fix foo* bar should be foo *bar as reported by checkpatch
authorMark Hounschell <markh@compro.net>
Fri, 28 Feb 2014 17:42:11 +0000 (12:42 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Feb 2014 22:57:59 +0000 (14:57 -0800)
This patch fixes "foo* bar should be foo *bar" errors
in dgap.c as reported by checkpatch

Signed-off-by: Mark Hounschell <markh@compro.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgap/dgap.c

index 19000dedc2f9b3398f2c7028f682907b2741289d..5a92398f98922318d5ba66d2725d612561fd6f7f 100644 (file)
@@ -123,8 +123,8 @@ static int dgap_tty_digigeta(struct tty_struct *tty, struct digi_t __user *retin
 static int dgap_tty_digiseta(struct tty_struct *tty, struct digi_t __user *new_info);
 static int dgap_tty_digigetedelay(struct tty_struct *tty, int __user *retinfo);
 static int dgap_tty_digisetedelay(struct tty_struct *tty, int __user *new_info);
-static int dgap_tty_write_room(struct tty_structtty);
-static int dgap_tty_chars_in_buffer(struct tty_structtty);
+static int dgap_tty_write_room(struct tty_struct *tty);
+static int dgap_tty_chars_in_buffer(struct tty_struct *tty);
 static void dgap_tty_start(struct tty_struct *tty);
 static void dgap_tty_stop(struct tty_struct *tty);
 static void dgap_tty_throttle(struct tty_struct *tty);