Add i2c_device_id to tsl2563.
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
/*--------------------------------------------------------------*/
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;
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,