[PATCH] eeprom/at25: parse partitions from device tree

Harald Welte laforge at gnumonks.org
Wed Feb 17 10:02:09 PST 2016


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 <laforge at gnumonks.org>
---
 drivers/eeprom/at25.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/eeprom/at25.c b/drivers/eeprom/at25.c
index 3e75b56..9f054d0 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:
-- 
2.7.0




More information about the barebox mailing list