summaryrefslogtreecommitdiff
path: root/drivers/i2c
diff options
context:
space:
mode:
authorTrevor Woerner <twoerner@gmail.com>2021-06-11 05:37:06 +0300
committerTom Rini <trini@konsulko.com>2021-07-06 21:12:15 +0300
commit3f70acdb7dc8c274a09e4421f78e25eac33fef76 (patch)
treeb9e97248435375204d19f22f0b462eeba69f6728 /drivers/i2c
parent1028403f2f53093f7c17dd57055d1e8da815348f (diff)
downloadu-boot-3f70acdb7dc8c274a09e4421f78e25eac33fef76.tar.xz
lpc32xx: i2c: fix base address
The lpc32xx driver was not obtaining the per-device base address correctly from the device tree. Fix the FIXME in order to get the correct base address. Signed-off-by: Trevor Woerner <twoerner@gmail.com>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/lpc32xx_i2c.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/i2c/lpc32xx_i2c.c b/drivers/i2c/lpc32xx_i2c.c
index 0ae116617c..6abff263bd 100644
--- a/drivers/i2c/lpc32xx_i2c.c
+++ b/drivers/i2c/lpc32xx_i2c.c
@@ -282,11 +282,7 @@ static int lpc32xx_i2c_probe(struct udevice *bus)
{
struct lpc32xx_i2c_dev *dev = dev_get_plat(bus);
- /*
- * FIXME: This is not permitted
- * dev_seq(bus) = dev->index;
- */
-
+ dev->base = dev_read_addr_ptr(bus);
__i2c_init(dev->base, dev->speed, 0, dev->index);
return 0;
}