From: Naveen Kumar Parna Date: Fri, 17 May 2019 04:50:07 +0000 (+0530) Subject: bsr: "foo * bar" should be "foo *bar" X-Git-Tag: v5.3-rc1~127^2~132 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=687685a3f246756a2a8c0d45820be42066ffce05;p=linux-2.6-block.git bsr: "foo * bar" should be "foo *bar" Fixed the checkpatch error. Used "foo *bar" instead of "foo * bar" Signed-off-by: Naveen Kumar Parna Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/char/bsr.c b/drivers/char/bsr.c index 70de334554a8..935d4b300340 100644 --- a/drivers/char/bsr.c +++ b/drivers/char/bsr.c @@ -147,7 +147,7 @@ static int bsr_mmap(struct file *filp, struct vm_area_struct *vma) return 0; } -static int bsr_open(struct inode * inode, struct file * filp) +static int bsr_open(struct inode *inode, struct file *filp) { struct cdev *cdev = inode->i_cdev; struct bsr_dev *dev = container_of(cdev, struct bsr_dev, bsr_cdev);