diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-04-28 17:39:02 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-04-30 18:40:28 +0200 |
commit | efc0ac5a0e54657f74c2d6e73e146d249116a608 (patch) | |
tree | 28671503ed430cec140d2bfe0a9afcca319bf2d2 /drivers/media/tuners | |
parent | [media] wl128x: fix int type for streg_cbdata (diff) | |
download | linux-efc0ac5a0e54657f74c2d6e73e146d249116a608.tar.xz linux-efc0ac5a0e54657f74c2d6e73e146d249116a608.zip |
[media] qt1010: Reduce text size by using static const
Using static const allows the compiler to optimize the code.
Before static const:
text data bss dec hex filename
4982 524 1568 7074 1ba2 drivers/media/tuners/qt1010.o
After static const:
text data bss dec hex filename
4714 524 1568 6806 1a96 drivers/media/tuners/qt1010.o
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/tuners')
-rw-r--r-- | drivers/media/tuners/qt1010.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/tuners/qt1010.c b/drivers/media/tuners/qt1010.c index bc419f8a9671..74b6b17cdbaf 100644 --- a/drivers/media/tuners/qt1010.c +++ b/drivers/media/tuners/qt1010.c @@ -294,7 +294,7 @@ static int qt1010_init(struct dvb_frontend *fe) int err = 0; u8 i, tmpval, *valptr = NULL; - qt1010_i2c_oper_t i2c_data[] = { + static const qt1010_i2c_oper_t i2c_data[] = { { QT1010_WR, 0x01, 0x80 }, { QT1010_WR, 0x0d, 0x84 }, { QT1010_WR, 0x0e, 0xb7 }, |