The patch titled rtc-pcf8563: add device ids table has been added to the -mm tree. Its filename is rtc-pcf8563-add-device-ids-table.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: rtc-pcf8563: add device ids table From: Laurent Pinchart <laurentp@xxxxxxxxxxxxxxxxx> This patch adds support for device tree names via the i2c mod alias mechanism to the rtc-pcf8563 driver. Signed-off-by: Laurent Pinchart <laurentp@xxxxxxxxxxxxxxxxx> Signed-off-by: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Cc: David Brownell <david-b@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-pcf8563.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff -puN drivers/rtc/rtc-pcf8563.c~rtc-pcf8563-add-device-ids-table drivers/rtc/rtc-pcf8563.c --- a/drivers/rtc/rtc-pcf8563.c~rtc-pcf8563-add-device-ids-table +++ a/drivers/rtc/rtc-pcf8563.c @@ -299,12 +299,20 @@ static int pcf8563_remove(struct i2c_cli return 0; } +static struct i2c_device_id pcf8563_id[] = { + { "pcf8563", 0 }, + { "rtc8564", 0 }, + {}, +}; +MODULE_DEVICE_TABLE(i2c, pcf8563_id); + static struct i2c_driver pcf8563_driver = { .driver = { .name = "rtc-pcf8563", }, .probe = pcf8563_probe, .remove = pcf8563_remove, + .id_table = pcf8563_id, }; static int __init pcf8563_init(void) _ Patches currently in -mm which might be from laurentp@xxxxxxxxxxxxxxxxx are rtc-pcf8563-add-device-ids-table.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html