From 11f26b681796e5f40d83321ea66e6fafa8f121d7 Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Tue, 13 May 2008 15:22:07 +0300 Subject: [PATCH] I2C: TSL2563: Add i2c_device_id Add i2c_device_id to tsl2563. Signed-off-by: Felipe Balbi Signed-off-by: Tony Lindgren --- drivers/i2c/chips/tsl2563.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/drivers/i2c/chips/tsl2563.c b/drivers/i2c/chips/tsl2563.c index cf2e313d5ff..b39b65caf09 100644 --- a/drivers/i2c/chips/tsl2563.c +++ b/drivers/i2c/chips/tsl2563.c @@ -595,7 +595,8 @@ static void tsl2563_unregister_sysfs(struct i2c_client *client) /*--------------------------------------------------------------*/ static struct i2c_driver tsl2563_i2c_driver; -static int tsl2563_probe(struct i2c_client *client) +static int tsl2563_probe(struct i2c_client *client, + const struct i2c_device_id *device_id) { struct tsl2563_chip *chip; int err = 0; @@ -703,6 +704,12 @@ out: return ret; } +static const struct i2c_device_id tsl2563_id[] = { + { DRIVER_NAME, 0 }, + { }, +}; +MODULE_DEVICE_TABLE(i2c, tsl2563_id); + static struct i2c_driver tsl2563_i2c_driver = { .driver = { .name = DRIVER_NAME, -- 2.41.1