diff options
author | Mark Hounschell <markh@compro.net> | 2014-02-28 12:42:11 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-28 14:57:59 -0800 |
commit | 5e9d8172719b8d8879b19bd75b1560d24a4e074e (patch) | |
tree | 5fdb2ad3d0e2745f525f5831cdd7e3dea68e9552 /drivers/staging/dgap | |
parent | 98dd3b2a3ad2b234ac9c6e7a233dde21e6e37da6 (diff) |
staging: dgap: Fix foo* bar should be foo *bar as reported by checkpatch
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>
Diffstat (limited to 'drivers/staging/dgap')
-rw-r--r-- | drivers/staging/dgap/dgap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c index 19000dedc2f9..5a92398f9892 100644 --- a/drivers/staging/dgap/dgap.c +++ b/drivers/staging/dgap/dgap.c @@ -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_struct* tty); -static int dgap_tty_chars_in_buffer(struct tty_struct* tty); +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); |