summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorPatrice Chotard <patrice.chotard@st.com>2020-04-30 18:41:05 +0200
committerPatrick Delaunay <patrick.delaunay@st.com>2020-05-14 09:02:12 +0200
commit5eff168470a353f3397a0bf43e87c8830fe5bbbd (patch)
treee90fba6794ecb5f58bb9b2c2d39943a5cea67808 /board
parent803e5620ca6d8ec5fa455b50957d8efe87d8c0c2 (diff)
downloadu-boot-5eff168470a353f3397a0bf43e87c8830fe5bbbd.tar.gz
u-boot-5eff168470a353f3397a0bf43e87c8830fe5bbbd.tar.xz
u-boot-5eff168470a353f3397a0bf43e87c8830fe5bbbd.zip
stm32mp1: Fix warning display when 1.5A power supply is used
On DK1/2 board, when a 1.5A power supply is detected, a warning message is displayed. In this message, "1.5mA" is displayed instead of "1.5A". Signed-off-by: Patrice Chotard <patrice.chotard@st.com> Reviewed-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'board')
-rw-r--r--board/st/stm32mp1/stm32mp1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/stm32mp1/stm32mp1.c b/board/st/stm32mp1/stm32mp1.c
index dcbfcc1bcb..33cb7f6c4d 100644
--- a/board/st/stm32mp1/stm32mp1.c
+++ b/board/st/stm32mp1/stm32mp1.c
@@ -431,7 +431,7 @@ static int board_check_usb_power(void)
if (max_uV > USB_WARNING_LOW_THRESHOLD_UV &&
max_uV <= USB_START_LOW_THRESHOLD_UV &&
min_uV <= USB_LOW_THRESHOLD_UV) {
- pr_err("* WARNING 1.5mA power supply detected *\n");
+ pr_err("* WARNING 1.5A power supply detected *\n");
nb_blink = 3;
}