diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2017-07-06 10:33:13 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-08 15:55:32 -0400 |
commit | ba3da7348ac9aaa1cc0a9ccbc8b3c9367d87ca4b (patch) | |
tree | 50826c7ee7fa776c1b94e9af8183d673f4dc311b /include/watchdog.h | |
parent | d79496657e3d8e856152e7652ade6597f6bdf73c (diff) | |
download | u-boot-midas-ba3da7348ac9aaa1cc0a9ccbc8b3c9367d87ca4b.tar.gz u-boot-midas-ba3da7348ac9aaa1cc0a9ccbc8b3c9367d87ca4b.tar.bz2 u-boot-midas-ba3da7348ac9aaa1cc0a9ccbc8b3c9367d87ca4b.zip |
powerpc, 8xx: Use IO accessors to access IO memory
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Reviewed-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'include/watchdog.h')
-rw-r--r-- | include/watchdog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/watchdog.h b/include/watchdog.h index a3a2eeaf1b..64b59f107a 100644 --- a/include/watchdog.h +++ b/include/watchdog.h @@ -74,7 +74,7 @@ int init_func_watchdog_reset(void); /* MPC 8xx */ #if defined(CONFIG_8xx) && !defined(__ASSEMBLY__) - void reset_8xx_watchdog(volatile immap_t *immr); + void reset_8xx_watchdog(immap_t __iomem *immr); #endif #if defined(CONFIG_HW_WATCHDOG) && !defined(__ASSEMBLY__) |