From 862064ee4f651777a82808cb5690b1f4f3d3619c Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 17 Feb 2016 18:59:21 +0100 Subject: [PATCH] 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 --- drivers/eeprom/at25.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/eeprom/at25.c b/drivers/eeprom/at25.c index 3e75b5651..9f054d00b 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: