diff mbox series

[U-Boot,11/20] power: regulator: stm32: Fix warnings when compiling with W=1

Message ID 1561123618-2029-11-git-send-email-patrick.delaunay@st.com
State Accepted
Commit c8a8937b92f467aca377953db35ef7a454f4f1d8
Delegated to: Patrick Delaunay
Headers show
Series [U-Boot,01/20] stm32mp1: Fix warnings when compiling with W=1 | expand

Commit Message

Patrick DELAUNAY June 21, 2019, 1:26 p.m. UTC
This patch solves the following warnings:

drivers/power/regulator/stm32-vrefbuf.c: In function 'stm32_vrefbuf_set_value':
warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (uV == stm32_vrefbuf_voltages[i]) {
          ^~

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
---

 drivers/power/regulator/stm32-vrefbuf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Patrick DELAUNAY July 12, 2019, 2:01 p.m. UTC | #1
Hi,

> From: Patrick DELAUNAY <patrick.delaunay@st.com>
> Sent: vendredi 21 juin 2019 15:27
> 
> This patch solves the following warnings:
> 
> drivers/power/regulator/stm32-vrefbuf.c: In function 'stm32_vrefbuf_set_value':
> warning: comparison between signed and unsigned integer expressions [-Wsign-
> compare]
>    if (uV == stm32_vrefbuf_voltages[i]) {
>           ^~
> 
> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
> ---
> 
>  drivers/power/regulator/stm32-vrefbuf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Applied to u-boot-stm32/master, thanks!

Patrick
diff mbox series

Patch

diff --git a/drivers/power/regulator/stm32-vrefbuf.c b/drivers/power/regulator/stm32-vrefbuf.c
index 0ad6833..645528e 100644
--- a/drivers/power/regulator/stm32-vrefbuf.c
+++ b/drivers/power/regulator/stm32-vrefbuf.c
@@ -30,7 +30,7 @@  struct stm32_vrefbuf {
 	struct udevice *vdda_supply;
 };
 
-static const unsigned int stm32_vrefbuf_voltages[] = {
+static const int stm32_vrefbuf_voltages[] = {
 	/* Matches resp. VRS = 000b, 001b, 010b, 011b */
 	2500000, 2048000, 1800000, 1500000,
 };