diff options
author | Wolfgang Denk <wd@denx.de> | 2010-10-24 15:37:12 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-24 15:37:12 +0200 |
commit | bc5e1701f39cc6118f364d09d711c0406757693c (patch) | |
tree | bfc1aea49faebb8cf2a8f292c4c439b989c83ba3 /board | |
parent | 6d79c39958aa0245e59f33860cd1ddd589119968 (diff) | |
download | u-boot-imx-bc5e1701f39cc6118f364d09d711c0406757693c.zip u-boot-imx-bc5e1701f39cc6118f364d09d711c0406757693c.tar.gz u-boot-imx-bc5e1701f39cc6118f364d09d711c0406757693c.tar.bz2 |
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>
Diffstat (limited to 'board')
-rw-r--r-- | board/icecube/icecube.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/icecube/icecube.c b/board/icecube/icecube.c index 47b2195..a9e4448 100644 --- a/board/icecube/icecube.c +++ b/board/icecube/icecube.c @@ -80,7 +80,7 @@ void lite5200b_wakeup(void) /* jump back to linux kernel code */ linux_wakeup = SAVED_ADDR; printf("\n\nLooks like we just woke, transferring control to 0x%08lx\n", - linux_wakeup); + (unsigned long)linux_wakeup); linux_wakeup(); } #else |