media: dvb-frontends: Clean up errors in cx24110.h
authorXueBing Chen <chenxb_99091@126.com>
Thu, 11 Jan 2024 11:01:32 +0000 (11:01 +0000)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 16 Feb 2024 10:46:31 +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/cx24110.h

index 834b011d3462db32dcf5b310c1e6a7b548b2e4b4..839551841893746c365bedb8a3648912a7701ad4 100644 (file)
@@ -34,11 +34,11 @@ static inline int cx24110_pll_write(struct dvb_frontend *fe, u32 val)
 }
 
 #if IS_REACHABLE(CONFIG_DVB_CX24110)
-extern struct dvb_frontend* cx24110_attach(const struct cx24110_config* config,
-                                          struct i2c_adapteri2c);
+extern struct dvb_frontend *cx24110_attach(const struct cx24110_config *config,
+                                          struct i2c_adapter *i2c);
 #else
-static inline struct dvb_frontend* cx24110_attach(const struct cx24110_config* config,
-                                                 struct i2c_adapteri2c)
+static inline struct dvb_frontend *cx24110_attach(const struct cx24110_config *config,
+                                                 struct i2c_adapter *i2c)
 {
        printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
        return NULL;