diff options
author | Daniel Scheller <d.scheller@gmx.net> | 2017-07-23 06:13:13 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-08-20 07:20:04 -0400 |
commit | 2af07a49dd4a1c96acb0b8e90db2602a7a729ab6 (patch) | |
tree | 113d9832f091790f09b5fc602e4c0637be32555b /drivers/media/dvb-frontends/stv6111.h | |
parent | 4f979d5cf0a5a5f1c4257e22034dabaf6227f4e7 (diff) | |
download | linux-stable-2af07a49dd4a1c96acb0b8e90db2602a7a729ab6.tar.gz linux-stable-2af07a49dd4a1c96acb0b8e90db2602a7a729ab6.tar.bz2 linux-stable-2af07a49dd4a1c96acb0b8e90db2602a7a729ab6.zip |
media: dvb-frontends/stv6111: coding style cleanup
Fix up all remainders reported by checkpatch-strict.
Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/dvb-frontends/stv6111.h')
-rw-r--r-- | drivers/media/dvb-frontends/stv6111.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/media/dvb-frontends/stv6111.h b/drivers/media/dvb-frontends/stv6111.h index 066dd70c9426..5bc1228dc9bd 100644 --- a/drivers/media/dvb-frontends/stv6111.h +++ b/drivers/media/dvb-frontends/stv6111.h @@ -3,13 +3,14 @@ #if IS_REACHABLE(CONFIG_DVB_STV6111) -extern struct dvb_frontend *stv6111_attach(struct dvb_frontend *fe, - struct i2c_adapter *i2c, u8 adr); +struct dvb_frontend *stv6111_attach(struct dvb_frontend *fe, + struct i2c_adapter *i2c, u8 adr); #else static inline struct dvb_frontend *stv6111_attach(struct dvb_frontend *fe, - struct i2c_adapter *i2c, u8 adr) + struct i2c_adapter *i2c, + u8 adr) { pr_warn("%s: Driver disabled by Kconfig\n", __func__); return NULL; |