From: Mark Hounschell Date: Fri, 28 Feb 2014 17:42:11 +0000 (-0500) Subject: staging: dgap: Fix foo* bar should be foo *bar as reported by checkpatch X-Git-Tag: v4.13~7630^2~785 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=5e9d8172719b8d8879b19bd75b1560d24a4e074e;p=mirror_ubuntu-bionic-kernel.git 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 Signed-off-by: Greg Kroah-Hartman --- 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);