diff mbox series

[U-Boot,v2,4/7] stm32mp1: update test on misc_read result

Message ID 1564744088-16896-5-git-send-email-patrick.delaunay@st.com
State Accepted
Commit 19efa395569963c0dcde9441ae877ce57c65f8f1
Delegated to: Patrick Delaunay
Headers show
Series misc: update drivers for stm32mp1 | expand

Commit Message

Patrick DELAUNAY Aug. 2, 2019, 11:08 a.m. UTC
Update the stm32mp1 baord after the commit 8729b1ae2cbd
("misc: Update read() and write() methods to return bytes xfered")

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
---

Changes in v2: None

 board/st/stm32mp1/stm32mp1.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/board/st/stm32mp1/stm32mp1.c b/board/st/stm32mp1/stm32mp1.c
index b99c6c0..ca20d85 100644
--- a/board/st/stm32mp1/stm32mp1.c
+++ b/board/st/stm32mp1/stm32mp1.c
@@ -101,7 +101,7 @@  int checkboard(void)
 	if (!ret)
 		ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_BOARD),
 				&otp, sizeof(otp));
-	if (!ret && otp) {
+	if (ret > 0 && otp) {
 		printf("Board: MB%04x Var%d Rev.%c-%02d\n",
 		       otp >> 16,
 		       (otp >> 12) & 0xF,