[PATCH] w1: add missing spaces before '*' and remove spaces after '*'

From: sunran001
Date: Wed Jul 19 2023 - 23:17:13 EST


Add missing spaces to clear checkpatch errors.

ERROR: "foo* bar" should be "foo *bar"

Signed-off-by: Ran Sun <sunran001@xxxxxxxxxx>
---
include/linux/w1.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/linux/w1.h b/include/linux/w1.h
index 9a2a0ef39018..70188da81d04 100644
--- a/include/linux/w1.h
+++ b/include/linux/w1.h
@@ -304,17 +304,17 @@ int w1_reset_select_slave(struct w1_slave *sl);
int w1_reset_resume_command(struct w1_master *);
void w1_next_pullup(struct w1_master *, int);

-static inline struct w1_slave* dev_to_w1_slave(struct device *dev)
+static inline struct w1_slave *dev_to_w1_slave(struct device *dev)
{
return container_of(dev, struct w1_slave, dev);
}

-static inline struct w1_slave* kobj_to_w1_slave(struct kobject *kobj)
+static inline struct w1_slave *kobj_to_w1_slave(struct kobject *kobj)
{
return dev_to_w1_slave(container_of(kobj, struct device, kobj));
}

-static inline struct w1_master* dev_to_w1_master(struct device *dev)
+static inline struct w1_master *dev_to_w1_master(struct device *dev)
{
return container_of(dev, struct w1_master, dev);
}