diff options
author | Mike Isely <isely@pobox.com> | 2006-01-23 06:54:33 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-01-23 14:06:28 -0500 |
commit | 20c40878e40581d847adc93d2b23411b5c3028fc (patch) | |
tree | ca1d6bb46d15cc0b774dc6ad6e7ae26c8c63d36b /drivers/media/video | |
parent | aad99f39bd6e2cd45d19d12fd5af9e5577186553 (diff) |
V4L/DVB (3418): Cause tda9887 to use I2C_DRIVERID_TDA9887
- The tda9887 has an I2C id reserved for it, but it hasn't been using
it. Probably an oversight. Fixed with this patch.
Signed-off-by: Mike Isely <isely@pobox.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/tda9887.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c index 5815649bdc78..7c71422f5d3f 100644 --- a/drivers/media/video/tda9887.c +++ b/drivers/media/video/tda9887.c | |||
@@ -876,7 +876,7 @@ static int tda9887_resume(struct device * dev) | |||
876 | /* ----------------------------------------------------------------------- */ | 876 | /* ----------------------------------------------------------------------- */ |
877 | 877 | ||
878 | static struct i2c_driver driver = { | 878 | static struct i2c_driver driver = { |
879 | .id = -1, /* FIXME */ | 879 | .id = I2C_DRIVERID_TDA9887, |
880 | .attach_adapter = tda9887_probe, | 880 | .attach_adapter = tda9887_probe, |
881 | .detach_client = tda9887_detach, | 881 | .detach_client = tda9887_detach, |
882 | .command = tda9887_command, | 882 | .command = tda9887_command, |