Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Ana Nedelcu and committed by
Greg Kroah-Hartman
518d3f38 2aeebca2

+1 -1
+1 -1
drivers/base/node.c
··· 180 180 static DEVICE_ATTR(vmstat, S_IRUGO, node_read_vmstat, NULL); 181 181 182 182 static 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 185 int nid = dev->id; 186 186 int len = 0;