media: dvb-frontends: Clean up errors in tda8083.h
authorXueBing Chen <chenxb_99091@126.com>
Thu, 11 Jan 2024 11:08:46 +0000 (11:08 +0000)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 16 Feb 2024 10:46:32 +0000 (11:46 +0100)
Fix the following errors reported by checkpatch:

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

Signed-off-by: XueBing Chen <chenxb_99091@126.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/dvb-frontends/tda8083.h

index 3a671ec3f45e714ef9b104ca1da70319d4b7c7e2..b635ac7ef688e89c85fd988017947ce0be258e11 100644 (file)
@@ -24,11 +24,11 @@ struct tda8083_config
 };
 
 #if IS_REACHABLE(CONFIG_DVB_TDA8083)
-extern struct dvb_frontend* tda8083_attach(const struct tda8083_config* config,
-                                          struct i2c_adapteri2c);
+extern struct dvb_frontend *tda8083_attach(const struct tda8083_config *config,
+                                          struct i2c_adapter *i2c);
 #else
-static inline struct dvb_frontend* tda8083_attach(const struct tda8083_config* config,
-                                          struct i2c_adapter* i2c)
+static inline struct dvb_frontend *tda8083_attach(const struct tda8083_config *config,
+                                                 struct i2c_adapter *i2c)
 {
        printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
        return NULL;