aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tuner-3036.c
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-04-02 13:04:41 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2005-06-22 00:51:49 -0400
commit68cc9d0b714d7d533c0cfc257a62f7f7f4f22a11 (patch)
tree616ee332d4a489598141512cbc01f591e1e84dec /drivers/media/video/tuner-3036.c
parentb3d5496ea5915fa4848fe307af9f7097f312e932 (diff)
[PATCH] I2C: Merge unused address lists in some video drivers
On top of my previous patch which removes the use of address ranges in video i2c drivers, this one can save an additional few bytes of memory. Most of these drivers which do not use I2C_CLIENT_INSMOD initialize the unused address lists in a less than optimal way. This patch simply optimizes this, by using a single one-element list instead of 3 different lists with two elements each. This saves an average 63 bytes on these drivers. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> diff -ruN linux-2.6.12-rc1-bk5.orig/drivers/media/video/adv7170.c linux-2.6.12-rc1-bk5/drivers/media/video/adv7170.c
Diffstat (limited to 'drivers/media/video/tuner-3036.c')
-rw-r--r--drivers/media/video/tuner-3036.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/media/video/tuner-3036.c b/drivers/media/video/tuner-3036.c
index bedb15e2f233..51748c6578d1 100644
--- a/drivers/media/video/tuner-3036.c
+++ b/drivers/media/video/tuner-3036.c
@@ -35,15 +35,13 @@ static struct i2c_client client_template;
35 35
36/* Addresses to scan */ 36/* Addresses to scan */
37static unsigned short normal_i2c[] = { 0x60, 0x61, I2C_CLIENT_END }; 37static unsigned short normal_i2c[] = { 0x60, 0x61, I2C_CLIENT_END };
38static unsigned short probe[2] = { I2C_CLIENT_END, I2C_CLIENT_END }; 38static unsigned short ignore = I2C_CLIENT_END;
39static unsigned short ignore[2] = { I2C_CLIENT_END, I2C_CLIENT_END };
40static unsigned short force[2] = { I2C_CLIENT_END, I2C_CLIENT_END };
41 39
42static struct i2c_client_address_data addr_data = { 40static struct i2c_client_address_data addr_data = {
43 .normal_i2c = normal_i2c, 41 .normal_i2c = normal_i2c,
44 .probe = probe, 42 .probe = &ignore,
45 .ignore = ignore, 43 .ignore = &ignore,
46 .force = force, 44 .force = &ignore,
47}; 45};
48 46
49/* ---------------------------------------------------------------------- */ 47/* ---------------------------------------------------------------------- */