diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2018-11-25 19:47:36 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-11-27 08:30:55 +0100 |
commit | 2081f9c03cc901ff288b65c4493d9272bf7df084 (patch) | |
tree | d14f63762ce9d109610cbdfe73df1f684eefe90a /drivers/char/lp.c | |
parent | 1b3451e0edd3257594dbad79bef7b1e451463273 (diff) | |
download | linux-2081f9c03cc901ff288b65c4493d9272bf7df084.tar.bz2 |
char: lp: fix whitespace with pointers
Fixes checkpatch warning:
"foo * bar should be foo *bar"
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char/lp.c')
-rw-r--r-- | drivers/char/lp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/char/lp.c b/drivers/char/lp.c index 15d03aa55a1a..017ea457a9d7 100644 --- a/drivers/char/lp.c +++ b/drivers/char/lp.c @@ -192,7 +192,7 @@ static int lp_preempt(void *handle) * Try to negotiate to a new mode; if unsuccessful negotiate to * compatibility mode. Return the mode we ended up in. */ -static int lp_negotiate(struct parport * port, int mode) +static int lp_negotiate(struct parport *port, int mode) { if (parport_negotiate (port, mode) != 0) { mode = IEEE1284_MODE_COMPAT; @@ -294,7 +294,7 @@ static int lp_wait_ready(int minor, int nonblock) return error; } -static ssize_t lp_write(struct file * file, const char __user * buf, +static ssize_t lp_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) { unsigned int minor = iminor(file_inode(file)); @@ -412,7 +412,7 @@ out_unlock: #ifdef CONFIG_PARPORT_1284 /* Status readback conforming to ieee1284 */ -static ssize_t lp_read(struct file * file, char __user * buf, +static ssize_t lp_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) { DEFINE_WAIT(wait); @@ -491,7 +491,7 @@ static ssize_t lp_read(struct file * file, char __user * buf, #endif /* IEEE 1284 support */ -static int lp_open(struct inode * inode, struct file * file) +static int lp_open(struct inode *inode, struct file *file) { unsigned int minor = iminor(inode); int ret = 0; @@ -561,7 +561,7 @@ out: return ret; } -static int lp_release(struct inode * inode, struct file * file) +static int lp_release(struct inode *inode, struct file *file) { unsigned int minor = iminor(inode); |