projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2aeebca
)
drivers: base: node: Delete space after pointer declaration
author
Ana Nedelcu
<anafnedelcu@gmail.com>
Sun, 8 Mar 2015 10:48:48 +0000
(12:48 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 25 Mar 2015 13:36:20 +0000
(14:36 +0100)
This patch fixes the following error found by checkpatch.pl:
ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: Ana Nedelcu <anafnedelcu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/node.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/base/node.c
b/drivers/base/node.c
index 6356866167aff4f7416abafb15850b5cc79244e3..a2aa65b4215d390925c8470d6790b129c16ac88a 100644
(file)
--- a/
drivers/base/node.c
+++ b/
drivers/base/node.c
@@
-180,7
+180,7
@@
static ssize_t node_read_vmstat(struct device *dev,
static DEVICE_ATTR(vmstat, S_IRUGO, node_read_vmstat, NULL);
static ssize_t node_read_distance(struct device *dev,
- struct device_attribute *attr, char *
buf)
+ struct device_attribute *attr, char *buf)
{
int nid = dev->id;
int len = 0;