rtc: pcf2127: Fix typo in comment
[linux-2.6-microblaze.git] / drivers / rtc / rtc-pcf2123.c
index 0f58cac..7473e6c 100644 (file)
@@ -451,12 +451,21 @@ static const struct of_device_id pcf2123_dt_ids[] = {
 MODULE_DEVICE_TABLE(of, pcf2123_dt_ids);
 #endif
 
+static const struct spi_device_id pcf2123_spi_ids[] = {
+       { .name = "pcf2123", },
+       { .name = "rv2123", },
+       { .name = "rtc-pcf2123", },
+       { /* sentinel */ }
+};
+MODULE_DEVICE_TABLE(spi, pcf2123_spi_ids);
+
 static struct spi_driver pcf2123_driver = {
        .driver = {
                        .name   = "rtc-pcf2123",
                        .of_match_table = of_match_ptr(pcf2123_dt_ids),
        },
        .probe  = pcf2123_probe,
+       .id_table = pcf2123_spi_ids,
 };
 
 module_spi_driver(pcf2123_driver);