]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
bsr: "foo * bar" should be "foo *bar"
authorNaveen Kumar Parna <parna.naveenkumar@gmail.com>
Fri, 17 May 2019 04:50:07 +0000 (10:20 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 24 May 2019 18:19:17 +0000 (20:19 +0200)
Fixed the checkpatch error. Used "foo *bar" instead of "foo * bar"

Signed-off-by: Naveen Kumar Parna <parna.naveenkumar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/bsr.c

index 70de334554a8bd0926d163f4eb3e59aaa43423a5..935d4b3003404e8b7fde9ffa69b9165caf0bc350 100644 (file)
@@ -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);