From a29f5e9d50aa5c5c61a5b17188a799740545ded8 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 17 Feb 2016 19:02:09 +0100 Subject: eeprom/at25: parse partitions from device tree Unlike at24 (I2C), the at25 (spi) EEPROM driver doesn't check if the device tree node contains partition definitions. This means that one for example cannot have bootstate partitions on an at25 EEPROM, while it works on an at24 EEPROM. This patch adds device tree based partition support to the at25 driver. Signed-off-by: Harald Welte Signed-off-by: Sascha Hauer --- drivers/eeprom/at25.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/eeprom/at25.c b/drivers/eeprom/at25.c index 3e75b56519..9f054d00b4 100644 --- a/drivers/eeprom/at25.c +++ b/drivers/eeprom/at25.c @@ -356,6 +356,7 @@ static int at25_probe(struct device_d *dev) dev_dbg(dev, "%s probed\n", at25->cdev.name); devfs_create(&at25->cdev); + of_parse_partitions(&at25->cdev, dev->device_node); return 0; fail: -- cgit v1.2.3