Skip to content

Commit 518d3f3

Browse files
annanedelcugregkh
authored andcommitted
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 <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 2aeebca commit 518d3f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/base/node.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ static ssize_t node_read_vmstat(struct device *dev,
180180
static DEVICE_ATTR(vmstat, S_IRUGO, node_read_vmstat, NULL);
181181

182182
static ssize_t node_read_distance(struct device *dev,
183-
struct device_attribute *attr, char * buf)
183+
struct device_attribute *attr, char *buf)
184184
{
185185
int nid = dev->id;
186186
int len = 0;

0 commit comments

Comments
 (0)