Skip to content

Commit

Permalink
drivers: base: node: Delete space after pointer declaration
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ana Nedelcu authored and Greg Kroah-Hartman committed Mar 25, 2015
1 parent 2aeebca commit 518d3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/base/node.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 518d3f3

Please sign in to comment.