Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: dvb-frontends: Clean up errors in tda8083.h

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>

authored by

XueBing Chen and committed by
Hans Verkuil
7d62ebc6 9e996dc3

+4 -4
+4 -4
drivers/media/dvb-frontends/tda8083.h
··· 24 24 }; 25 25 26 26 #if IS_REACHABLE(CONFIG_DVB_TDA8083) 27 - extern struct dvb_frontend* tda8083_attach(const struct tda8083_config* config, 28 - struct i2c_adapter* i2c); 27 + extern struct dvb_frontend *tda8083_attach(const struct tda8083_config *config, 28 + struct i2c_adapter *i2c); 29 29 #else 30 - static inline struct dvb_frontend* tda8083_attach(const struct tda8083_config* config, 31 - struct i2c_adapter* i2c) 30 + static inline struct dvb_frontend *tda8083_attach(const struct tda8083_config *config, 31 + struct i2c_adapter *i2c) 32 32 { 33 33 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); 34 34 return NULL;