include/linux/ssb/ssb.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
Fix the following errors reported by checkpatch:
ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: GuoHua Cheng <chenguohua@jari.cn>
---
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
chenguohua@jari.cn wrote: > Fix the following errors reported by checkpatch: > > ERROR: "foo * bar" should be "foo *bar" > > Signed-off-by: GuoHua Cheng <chenguohua@jari.cn> We prefer not to take checkpatch fixes unless explicitly requested by the maintainers. Patch set to Rejected. -- https://patchwork.kernel.org/project/linux-wireless/patch/54aacb43.944.18b2707fa87.Coremail.chenguohua@jari.cn/ https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
© 2016 - 2025 Red Hat, Inc.