diff options
author | Patrick Boettcher <patrick.boettcher@posteo.de> | 2015-04-28 18:39:20 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-05-18 21:33:55 +0200 |
commit | 1ff2e8ed28e96f49b0f98b9a86e755ddd1a1078b (patch) | |
tree | b2170ff71734aab811c1253de3c3b2392f816280 /drivers/media/dvb-frontends/cx24120.h | |
parent | [media] cx24120: fix codingstyle issue first round (diff) | |
download | linux-1ff2e8ed28e96f49b0f98b9a86e755ddd1a1078b.tar.xz linux-1ff2e8ed28e96f49b0f98b9a86e755ddd1a1078b.zip |
[media] cx24120: fix strict checkpatch-errors
This patches fixes all checkpatch-errors.
Even the ones created --strict.
Signed-off-by: Patrick Boettcher <patrick.boettcher@posteo.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/cx24120.h')
-rw-r--r-- | drivers/media/dvb-frontends/cx24120.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/media/dvb-frontends/cx24120.h b/drivers/media/dvb-frontends/cx24120.h index e5748aaa8418..f0970423e16f 100644 --- a/drivers/media/dvb-frontends/cx24120.h +++ b/drivers/media/dvb-frontends/cx24120.h @@ -43,13 +43,12 @@ struct cx24120_config { }; #if IS_REACHABLE(CONFIG_DVB_CX24120) -extern struct dvb_frontend *cx24120_attach( - const struct cx24120_config *config, - struct i2c_adapter *i2c); +struct dvb_frontend *cx24120_attach(const struct cx24120_config *config, + struct i2c_adapter *i2c); #else -static inline struct dvb_frontend *cx24120_attach( - const struct cx24120_config *config, - struct i2c_adapter *i2c) +static inline +struct dvb_frontend *cx24120_attach(const struct cx24120_config *config, + struct i2c_adapter *i2c) { pr_warn("%s: driver disabled by Kconfig\n", __func__); return NULL; |