Commit 518d3f38 authored by Ana Nedelcu's avatar Ana Nedelcu Committed by Greg Kroah-Hartman

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: default avatarAna Nedelcu <anafnedelcu@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2aeebca2
...@@ -180,7 +180,7 @@ static ssize_t node_read_vmstat(struct device *dev, ...@@ -180,7 +180,7 @@ static ssize_t node_read_vmstat(struct device *dev,
static DEVICE_ATTR(vmstat, S_IRUGO, node_read_vmstat, NULL); static DEVICE_ATTR(vmstat, S_IRUGO, node_read_vmstat, NULL);
static ssize_t node_read_distance(struct device *dev, 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 nid = dev->id;
int len = 0; int len = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment