From: Patrick Delaunay Date: Fri, 2 Aug 2019 11:08:06 +0000 (+0200) Subject: stm32mp1: update sysconf_init on misc_read result X-Git-Tag: v2025.01-rc5-pxa1908~2809^2~7 X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/git-logo.png?a=commitdiff_plain;h=ff6618e9b244ca98c744044123e47986839c5d9b;p=u-boot.git stm32mp1: update sysconf_init on misc_read result Update management of misc_read in sysconf_init, which now return length of data after the commit 8729b1ae2cbd ("misc: Update read() and write() methods to return bytes xfered") Signed-off-by: Patrick Delaunay --- diff --git a/board/st/stm32mp1/stm32mp1.c b/board/st/stm32mp1/stm32mp1.c index d994d386b5..95e6078174 100644 --- a/board/st/stm32mp1/stm32mp1.c +++ b/board/st/stm32mp1/stm32mp1.c @@ -487,7 +487,7 @@ static void sysconf_init(void) } ret = misc_read(dev, STM32_BSEC_SHADOW(18), &otp, 4); - if (!ret) + if (ret > 0) otp = otp & BIT(13); /* get VDD = vdd-supply */