From mboxrd@z Thu Jan 1 00:00:00 1970 From: ferlandm at amotus.ca Date: Mon, 21 Dec 2020 09:50:16 -0500 Subject: [PATCH v2] i2c: mxc_i2c: improve error message readability In-Reply-To: <20201218194303.3510162-1-ferlandm@amotus.ca> References: <20201218194303.3510162-1-ferlandm@amotus.ca> Message-ID: <20201221145016.3604331-1-ferlandm@amotus.ca> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Marc Ferland Use 0x%2lx to print the i2c bus base address in hexadecimal format instead of printing as an integer. Signed-off-by: Marc Ferland --- Changes for v2: - Add commit message drivers/i2c/mxc_i2c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index 7609594bd0..d486dab043 100644 --- a/drivers/i2c/mxc_i2c.c +++ b/drivers/i2c/mxc_i2c.c @@ -954,7 +954,7 @@ static int mxc_i2c_probe(struct udevice *bus) !dm_gpio_is_valid(&i2c_bus->scl_gpio) || ret || ret2) { dev_err(bus, - "i2c bus %d at %lu, fail to request scl/sda gpio\n", + "i2c bus %d at 0x%2lx, fail to request scl/sda gpio\n", bus->seq, i2c_bus->base); return -EINVAL; } -- 2.25.1