mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-14 18:31:32 +00:00
omap4: fix build warning due to signed unsigned comparison
Signed-off-by: Aneesh V <aneesh@ti.com>
This commit is contained in:
parent
8fcf5959a8
commit
34455b04fc
1 changed files with 6 additions and 6 deletions
|
@ -679,12 +679,12 @@ struct dpll_regs {
|
||||||
struct dpll_params {
|
struct dpll_params {
|
||||||
u32 m;
|
u32 m;
|
||||||
u32 n;
|
u32 n;
|
||||||
u8 m2;
|
s8 m2;
|
||||||
u8 m3;
|
s8 m3;
|
||||||
u8 m4;
|
s8 m4;
|
||||||
u8 m5;
|
s8 m5;
|
||||||
u8 m6;
|
s8 m6;
|
||||||
u8 m7;
|
s8 m7;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* _CLOCKS_OMAP4_H_ */
|
#endif /* _CLOCKS_OMAP4_H_ */
|
||||||
|
|
Loading…
Add table
Reference in a new issue