projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7256d7f
)
bsr: "foo * bar" should be "foo *bar"
author
Naveen Kumar Parna
<parna.naveenkumar@gmail.com>
Fri, 17 May 2019 04:50:07 +0000
(10:20 +0530)
committer
Greg 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
patch
|
blob
|
history
diff --git
a/drivers/char/bsr.c
b/drivers/char/bsr.c
index
70de334
..
935d4b3
100644
(file)
--- 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);