1
0
Fork 0

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>
hifive-unleashed-5.1
Ana Nedelcu 2015-03-08 12:48:48 +02:00 committed by Greg Kroah-Hartman
parent 2aeebca2f3
commit 518d3f38ab
1 changed files with 1 additions and 1 deletions

View File

@ -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;