mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-03 13:01:31 +00:00
GCC4.6: Squash warnings in diu.c
diu.c: In function 'diu_set_pixel_clock': diu.c:77: warning: format '%lu' expects type 'long unsigned int', but argument 2 has type 'u32' Signed-off-by: Marek Vasut <marek.vasut@gmail.com> Cc: Wolfgang Denk <wd@denx.de> Cc: Simon Glass <sjg@chromium.org> Cc: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
dffe06fa4a
commit
1f09b44cae
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ void diu_set_pixel_clock(unsigned int pixclock)
|
||||||
temp = 1000000000 / pixclock;
|
temp = 1000000000 / pixclock;
|
||||||
temp *= 1000;
|
temp *= 1000;
|
||||||
pixval = speed_ccb / temp;
|
pixval = speed_ccb / temp;
|
||||||
debug("DIU pixval = %lu\n", pixval);
|
debug("DIU pixval = %u\n", pixval);
|
||||||
|
|
||||||
/* Modify PXCLK in GUTS CLKDVDR */
|
/* Modify PXCLK in GUTS CLKDVDR */
|
||||||
temp = in_be32(&gur->clkdvdr) & 0x2000FFFF;
|
temp = in_be32(&gur->clkdvdr) & 0x2000FFFF;
|
||||||
|
|
Loading…
Add table
Reference in a new issue