aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/node.c
diff options
context:
space:
mode:
authorAna Nedelcu <anafnedelcu@gmail.com>2015-03-08 12:48:48 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-25 14:36:20 +0100
commit518d3f38abb8cc3a5125e71a1d23a366c69e2e49 (patch)
tree4b9a28b432db43bde6f7c1a008bd1daeddf34e42 /drivers/base/node.c
parentdrivers: base: memory: Use tabs instead of spaces (diff)
downloadlinux-dev-518d3f38abb8cc3a5125e71a1d23a366c69e2e49.tar.xz
linux-dev-518d3f38abb8cc3a5125e71a1d23a366c69e2e49.zip
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,
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;