]> git.baikalelectronics.ru Git - kernel.git/commitdiff
misc/at25, dt: support probing at25 SPI EEPROM from DT
authorJan Luebbe <jlu@pengutronix.de>
Mon, 14 Oct 2013 15:14:59 +0000 (17:14 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 16 Oct 2013 19:36:09 +0000 (12:36 -0700)
The commit 13612b6a2df8daa4d3f9bcdb55b552e5e5fc6688 introduced devicetree
binding documentation for this driver, but the driver itself does not yet
support the documented compatible entry. Fix this by adding the documented
entry to the driver.

Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/eeprom/at25.c

index 840b3594a5ae3c852b1e643a9f4b7e167033ad4f..4f3bca1003a175d2eb0ea7fdf423cd8dfa70e14d 100644 (file)
@@ -462,10 +462,17 @@ static int at25_remove(struct spi_device *spi)
 
 /*-------------------------------------------------------------------------*/
 
+static const struct of_device_id at25_of_match[] = {
+       { .compatible = "atmel,at25", },
+       { }
+};
+MODULE_DEVICE_TABLE(of, at25_of_match);
+
 static struct spi_driver at25_driver = {
        .driver = {
                .name           = "at25",
                .owner          = THIS_MODULE,
+               .of_match_table = at25_of_match,
        },
        .probe          = at25_probe,
        .remove         = at25_remove,