From: Aneesh V <aneesh@ti.com>
Date: Sat, 20 Aug 2011 21:40:26 +0000 (+0000)
Subject: omap4: fix build warning due to signed unsigned comparison
X-Git-Tag: v2025.01-rc5-pxa1908~19109^2~111
X-Git-Url: http://git.dujemihanovic.xyz/projects?a=commitdiff_plain;h=34455b04fc35ff9d1e5bcac7bec91e7a32b44d7a;p=u-boot.git

omap4: fix build warning due to signed unsigned comparison

Signed-off-by: Aneesh V <aneesh@ti.com>
---

diff --git a/arch/arm/include/asm/arch-omap4/clocks.h b/arch/arm/include/asm/arch-omap4/clocks.h
index 374e0642ec..45c947d648 100644
--- a/arch/arm/include/asm/arch-omap4/clocks.h
+++ b/arch/arm/include/asm/arch-omap4/clocks.h
@@ -679,12 +679,12 @@ struct dpll_regs {
 struct dpll_params {
 	u32 m;
 	u32 n;
-	u8 m2;
-	u8 m3;
-	u8 m4;
-	u8 m5;
-	u8 m6;
-	u8 m7;
+	s8 m2;
+	s8 m3;
+	s8 m4;
+	s8 m5;
+	s8 m6;
+	s8 m7;
 };
 
 #endif /* _CLOCKS_OMAP4_H_ */