diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2006-01-07 20:43:22 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2006-01-07 20:43:22 +0000 |
commit | 891b1a330d34434953b744f5b470acf01cbcd1df (patch) | |
tree | a4deac413d4896ae8c4372d2c068d3f6a50a807e /linux/drivers/media/video/tda7432.c | |
parent | a107ffe65b37a2bb7dfad1822910d281b18a2da9 (diff) | |
download | mediapointer-dvb-s2-891b1a330d34434953b744f5b470acf01cbcd1df.tar.gz mediapointer-dvb-s2-891b1a330d34434953b744f5b470acf01cbcd1df.tar.bz2 |
Some cleanups at I2C modules
- Latest patch reverted, since __stringfy seems to be needed for
kernel < 2.6.15
- Applied kernel I2C cleanups from Jean Delaware.
- driver names simplified to allow usage of newer printk macros
at v4l2-common.h
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'linux/drivers/media/video/tda7432.c')
-rw-r--r-- | linux/drivers/media/video/tda7432.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/linux/drivers/media/video/tda7432.c b/linux/drivers/media/video/tda7432.c index c5b2fdfdf..7b68530b1 100644 --- a/linux/drivers/media/video/tda7432.c +++ b/linux/drivers/media/video/tda7432.c @@ -531,12 +531,18 @@ static int tda7432_command(struct i2c_client *client, } static struct i2c_driver driver = { -#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,54) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0))&&(LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,15)) .owner = THIS_MODULE, #endif - .name = "i2c tda7432 driver", - .id = I2C_DRIVERID_TDA7432, +#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,15) + .name = "tda7432", .flags = I2C_DF_NOTIFY, +#else + .driver = { + .name = "tda7432", + }, +#endif + .id = I2C_DRIVERID_TDA7432, .attach_adapter = tda7432_probe, .detach_client = tda7432_detach, .command = tda7432_command, |