diff options
author | Adrian Bunk | 2005-07-27 20:45:51 +0200 |
---|---|---|
committer | Linus Torvalds | 2005-07-28 01:26:15 +0200 |
commit | 82ee3e6fa347dcba19e36afb23a01020bc2e77e2 (patch) | |
tree | 5bffda0707ba1fe1a1c1e59029762c9b76b026b3 /drivers/media | |
parent | [PATCH] DVICO Fusion DVB-T1 Tuner (LG-Z201) fix (diff) | |
download | kernel-qcow2-linux-82ee3e6fa347dcba19e36afb23a01020bc2e77e2.tar.gz kernel-qcow2-linux-82ee3e6fa347dcba19e36afb23a01020bc2e77e2.tar.xz kernel-qcow2-linux-82ee3e6fa347dcba19e36afb23a01020bc2e77e2.zip |
[PATCH] drivers/media/video/tveeprom.c: possible cleanups
This patch contains the following possible cleanups:
- make two needlessly global structs static
- #if 0 the EXPORT_SYMBOL'ed but unused function tveeprom_dump
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/tveeprom.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/media/video/tveeprom.c b/drivers/media/video/tveeprom.c index e8d9440977cb..62b03ef091e0 100644 --- a/drivers/media/video/tveeprom.c +++ b/drivers/media/video/tveeprom.c @@ -445,6 +445,7 @@ int tveeprom_read(struct i2c_client *c, unsigned char *eedata, int len) } EXPORT_SYMBOL(tveeprom_read); +#if 0 int tveeprom_dump(unsigned char *eedata, int len) { int i; @@ -460,6 +461,7 @@ int tveeprom_dump(unsigned char *eedata, int len) return 0; } EXPORT_SYMBOL(tveeprom_dump); +#endif /* 0 */ /* ----------------------------------------------------------------------- */ /* needed for ivtv.sf.net at the moment. Should go away in the long */ @@ -477,7 +479,7 @@ static unsigned short normal_i2c[] = { I2C_CLIENT_INSMOD; -struct i2c_driver i2c_driver_tveeprom; +static struct i2c_driver i2c_driver_tveeprom; static int tveeprom_command(struct i2c_client *client, @@ -549,7 +551,7 @@ tveeprom_detach_client (struct i2c_client *client) return 0; } -struct i2c_driver i2c_driver_tveeprom = { +static struct i2c_driver i2c_driver_tveeprom = { .owner = THIS_MODULE, .name = "tveeprom", .id = I2C_DRIVERID_TVEEPROM, |