diff mbox series

[1/1] i2c: Bugfix in i2c_get_chip_by_phandle()

Message ID 20231124140400.32027-1-pro@denx.de
State Accepted
Commit acae7eb5fe063dcfe2dbdb1e1804cf3e12cc2f3f
Delegated to: Tom Rini
Headers show
Series [1/1] i2c: Bugfix in i2c_get_chip_by_phandle() | expand

Commit Message

Philip Oberfichtner Nov. 24, 2023, 2:04 p.m. UTC
The "i2cbcdev" sneaked in when implementing this function for the
bootcounter use case. Obviously the intention was to use prop_name
instead.

Fixes: b483552773 (i2c: Implement i2c_get_chip_by_phandle())

Signed-off-by: Philip Oberfichtner <pro@denx.de>
---
 drivers/i2c/i2c-uclass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Heiko Schocher Nov. 27, 2023, 6:12 a.m. UTC | #1
Hello Philip,

On 24.11.23 15:04, Philip Oberfichtner wrote:
> The "i2cbcdev" sneaked in when implementing this function for the
> bootcounter use case. Obviously the intention was to use prop_name
> instead.
> 
> Fixes: b483552773 (i2c: Implement i2c_get_chip_by_phandle())
> 
> Signed-off-by: Philip Oberfichtner <pro@denx.de>
> ---
>  drivers/i2c/i2c-uclass.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Indeed!

Acked-by: Heiko Schocher <hs@denx.de>

@Tom: Do you want a pull request from me, or can you pick up this?

Thanks!

bye,
Heiko
Tom Rini Nov. 27, 2023, 12:55 p.m. UTC | #2
On Mon, Nov 27, 2023 at 07:12:35AM +0100, Heiko Schocher wrote:
> Hello Philip,
> 
> On 24.11.23 15:04, Philip Oberfichtner wrote:
> > The "i2cbcdev" sneaked in when implementing this function for the
> > bootcounter use case. Obviously the intention was to use prop_name
> > instead.
> > 
> > Fixes: b483552773 (i2c: Implement i2c_get_chip_by_phandle())
> > 
> > Signed-off-by: Philip Oberfichtner <pro@denx.de>
> > ---
> >  drivers/i2c/i2c-uclass.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Indeed!
> 
> Acked-by: Heiko Schocher <hs@denx.de>
> 
> @Tom: Do you want a pull request from me, or can you pick up this?

I can get just this, thanks.
Tom Rini Nov. 27, 2023, 11:55 p.m. UTC | #3
On Fri, 24 Nov 2023 15:04:01 +0100, Philip Oberfichtner wrote:

> The "i2cbcdev" sneaked in when implementing this function for the
> bootcounter use case. Obviously the intention was to use prop_name
> instead.
> 
> Fixes: b483552773 (i2c: Implement i2c_get_chip_by_phandle())
> 
> 
> [...]

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/drivers/i2c/i2c-uclass.c b/drivers/i2c/i2c-uclass.c
index d0db25dcc0..3cbd4a81a5 100644
--- a/drivers/i2c/i2c-uclass.c
+++ b/drivers/i2c/i2c-uclass.c
@@ -428,7 +428,7 @@  int i2c_get_chip_by_phandle(const struct udevice *parent, const char *prop_name,
 		goto err_exit;
 	}
 
-	ret = dev_read_u32(parent, "i2cbcdev", &phandle);
+	ret = dev_read_u32(parent, prop_name, &phandle);
 	if (ret)
 		goto err_exit;