aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/node.c
diff options
context:
space:
mode:
authorAna Nedelcu <anafnedelcu@gmail.com>2015-03-08 06:48:48 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-25 09:36:20 -0400
commit518d3f38abb8cc3a5125e71a1d23a366c69e2e49 (patch)
tree4b9a28b432db43bde6f7c1a008bd1daeddf34e42 /drivers/base/node.c
parent2aeebca2f3586755802689e12ba87140d803d88a (diff)
drivers: base: node: Delete space after pointer declaration
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>
Diffstat (limited to 'drivers/base/node.c')
-rw-r--r--drivers/base/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/node.c b/drivers/base/node.c
index 6356866167af..a2aa65b4215d 100644
--- a/drivers/base/node.c
+++ b/drivers/base/node.c
@@ -180,7 +180,7 @@ static ssize_t node_read_vmstat(struct device *dev,
180static DEVICE_ATTR(vmstat, S_IRUGO, node_read_vmstat, NULL); 180static DEVICE_ATTR(vmstat, S_IRUGO, node_read_vmstat, NULL);
181 181
182static ssize_t node_read_distance(struct device *dev, 182static ssize_t node_read_distance(struct device *dev,
183 struct device_attribute *attr, char * buf) 183 struct device_attribute *attr, char *buf)
184{ 184{
185 int nid = dev->id; 185 int nid = dev->id;
186 int len = 0; 186 int len = 0;