diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-01-04 16:29:29 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-01-05 01:41:14 +0100 |
commit | 2f25d9963ee6ba57db67a0410fcd932f4be18373 (patch) | |
tree | 94b4dcb9029535d445e1115000c1197b850194b6 /src/cpu/samsung/s5p-common/watchdog.h | |
parent | 9bcab0c72bea6188ebf735ce08ba269ef5f9a272 (diff) |
ARMv7: drop __ASSEMBLY__
We moved to using __ASSEMBLER__ years ago since it is set by as.
Change-Id: I60103ba23ebe87be1d0bc63beed0ef5b05eed4f2
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2111
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/cpu/samsung/s5p-common/watchdog.h')
-rw-r--r-- | src/cpu/samsung/s5p-common/watchdog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/samsung/s5p-common/watchdog.h b/src/cpu/samsung/s5p-common/watchdog.h index 0f80ca5df4..8c8bf0ae92 100644 --- a/src/cpu/samsung/s5p-common/watchdog.h +++ b/src/cpu/samsung/s5p-common/watchdog.h @@ -42,7 +42,7 @@ #define WTCON_RESET (0x1 << WTCON_RESET_OFFSET) #define WTCON_INT (0x1 << WTCON_INTEN_OFFSET) -#ifndef __ASSEMBLY__ +#ifndef __ASSEMBLER__ struct s5p_watchdog { unsigned int wtcon; unsigned int wtdat; @@ -53,6 +53,6 @@ struct s5p_watchdog { /* functions */ void wdt_stop(void); void wdt_start(unsigned int timeout); -#endif /* __ASSEMBLY__ */ +#endif /* __ASSEMBLER__ */ #endif |