[PATCH] ssb: Clean up errors in ssb.h

From: chenguohua
Date: Thu Oct 12 2023 - 23:17:04 EST


Fix the following errors reported by checkpatch:

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

Signed-off-by: GuoHua Cheng <chenguohua@xxxxxxx>
---
include/linux/ssb/ssb.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/linux/ssb/ssb.h b/include/linux/ssb/ssb.h
index 1f326da289d3..b6a674719a27 100644
--- a/include/linux/ssb/ssb.h
+++ b/include/linux/ssb/ssb.h
@@ -285,7 +285,7 @@ struct ssb_device {

/* Go from struct device to struct ssb_device. */
static inline
-struct ssb_device * dev_to_ssb_dev(const struct device *dev)
+struct ssb_device *dev_to_ssb_dev(const struct device *dev)
{
struct __ssb_dev_wrapper *wrap;
wrap = container_of(dev, struct __ssb_dev_wrapper, dev);
@@ -299,7 +299,7 @@ void ssb_set_drvdata(struct ssb_device *dev, void *data)
dev->drvdata = data;
}
static inline
-void * ssb_get_drvdata(struct ssb_device *dev)
+void *ssb_get_drvdata(struct ssb_device *dev)
{
return dev->drvdata;
}
@@ -307,7 +307,7 @@ void * ssb_get_drvdata(struct ssb_device *dev)
/* Devicetype specific user data. This is per device-type (not per device) */
void ssb_set_devtypedata(struct ssb_device *dev, void *data);
static inline
-void * ssb_get_devtypedata(struct ssb_device *dev)
+void *ssb_get_devtypedata(struct ssb_device *dev)
{
return dev->devtypedata;
}
--
2.17.1