aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNaveen Kumar Parna <parna.naveenkumar@gmail.com>2019-05-17 00:50:07 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-05-24 14:19:17 -0400
commit687685a3f246756a2a8c0d45820be42066ffce05 (patch)
treeb6274ea531653b28842b031d19ba413428419d23
parent7256d7f401bdc9d3bd37c5de5f9b5f4f7e2de511 (diff)
bsr: "foo * bar" should be "foo *bar"
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>
-rw-r--r--drivers/char/bsr.c2
1 files changed, 1 insertions, 1 deletions
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)
147 return 0; 147 return 0;
148} 148}
149 149
150static int bsr_open(struct inode * inode, struct file * filp) 150static int bsr_open(struct inode *inode, struct file *filp)
151{ 151{
152 struct cdev *cdev = inode->i_cdev; 152 struct cdev *cdev = inode->i_cdev;
153 struct bsr_dev *dev = container_of(cdev, struct bsr_dev, bsr_cdev); 153 struct bsr_dev *dev = container_of(cdev, struct bsr_dev, bsr_cdev);