diff options
author | Tom Rini <trini@konsulko.com> | 2023-02-13 09:57:35 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-13 09:57:35 -0500 |
commit | d7bcd6ee409ae9c69dcc7b66462a4c86c165e6a9 (patch) | |
tree | 8602fd457e676c29c013272155aa23af7981dbc1 /drivers/i2c/mxc_i2c.c | |
parent | be9399b399f39c2cae49062ff2dacd1d05bb89c8 (diff) | |
parent | f536fda99fa2c1c88f68d8da54ed6233cec3532e (diff) |
Merge tag 'i2c-updates-for-v2023.04' of https://source.denx.de/u-boot/custodians/u-boot-i2c
i2c updates for v2023.04
- add new i2c driver ast2600 from Ryan Chen
- i2c-cdns: make read fifo-depth configurable through device tree
from Pei Yue Ho
- mxc i2c driver: print base address in hex, not in decimal
from Fabio
Diffstat (limited to 'drivers/i2c/mxc_i2c.c')
-rw-r--r-- | drivers/i2c/mxc_i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index 86b9fb57c8..d501133a0c 100644 --- a/drivers/i2c/mxc_i2c.c +++ b/drivers/i2c/mxc_i2c.c @@ -938,7 +938,7 @@ static int mxc_i2c_probe(struct udevice *bus) * we can set pinmux here in probe function. */ - debug("i2c : controller bus %d at %lu , speed %d: ", + debug("i2c : controller bus %d at 0x%lx , speed %d: ", dev_seq(bus), i2c_bus->base, i2c_bus->speed); |