watchdog: ziirave_wdt: Correct I2C device id to fix module autoloading.
authorEnric Balletbo i Serra <enric.balletbo@collabora.com>
Sat, 9 Jul 2016 09:43:19 +0000 (11:43 +0200)
committerWim Van Sebroeck <wim@iguana.be>
Sun, 17 Jul 2016 19:01:31 +0000 (21:01 +0200)
The I2C core removes the manufacturer prefix from the compatible field
so it reports to user-space the uevent i2c:rave-wdt, but this doesn't
match with the i2c_device_id (i2c:ziirave-wdt) array so the module is not
autoloaded. Correct the I2C device id to match with the reported uevent
and fix the module autoloading functionality.

Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/watchdog/ziirave_wdt.c

index cbe373de36598572bc47557a008386e7838086c8..fa1efef3c96e2c06aa0a5c10a7413e952bc262d6 100644 (file)
@@ -339,7 +339,7 @@ static int ziirave_wdt_remove(struct i2c_client *client)
 }
 
 static struct i2c_device_id ziirave_wdt_id[] = {
-       { "ziirave-wdt", 0 },
+       { "rave-wdt", 0 },
        { }
 };
 MODULE_DEVICE_TABLE(i2c, ziirave_wdt_id);