Skip to content
Snippets Groups Projects
Commit 34455b04 authored by Aneesh V's avatar Aneesh V Committed by Albert ARIBAUD
Browse files

omap4: fix build warning due to signed unsigned comparison


Signed-off-by: default avatarAneesh V <aneesh@ti.com>
parent 8fcf5959
No related branches found
No related tags found
No related merge requests found
......@@ -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_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment