mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 13:41:31 +00:00
lite5200b_PM: fix compile warning
Fix warning: icecube.c: In function 'lite5200b_wakeup': icecube.c:83: warning: format '%08lx' expects type 'long unsigned int', but argument 2 has type 'void (*)(void)' Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
6d79c39958
commit
bc5e1701f3
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ void lite5200b_wakeup(void)
|
||||||
/* jump back to linux kernel code */
|
/* jump back to linux kernel code */
|
||||||
linux_wakeup = SAVED_ADDR;
|
linux_wakeup = SAVED_ADDR;
|
||||||
printf("\n\nLooks like we just woke, transferring control to 0x%08lx\n",
|
printf("\n\nLooks like we just woke, transferring control to 0x%08lx\n",
|
||||||
linux_wakeup);
|
(unsigned long)linux_wakeup);
|
||||||
linux_wakeup();
|
linux_wakeup();
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Reference in a new issue