w1: add missing spaces before '*' and remove spaces after '*'

Message ID 0ed50f990b1b10620f5fdaa123809ff7@208suo.com (mailing list archive)
State Not Applicable
Headers
Series w1: add missing spaces before '*' and remove spaces after '*' |

Commit Message

sunran001@208suo.com July 20, 2023, 3:21 a.m. UTC
  Add missing spaces to clear checkpatch errors.

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

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

Patch

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);
  }