summaryrefslogtreecommitdiff
path: root/src/cpu/samsung/exynos5-common/pwm.h
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2013-01-04 16:29:29 -0800
committerRonald G. Minnich <rminnich@gmail.com>2013-01-05 01:41:14 +0100
commit2f25d9963ee6ba57db67a0410fcd932f4be18373 (patch)
tree94b4dcb9029535d445e1115000c1197b850194b6 /src/cpu/samsung/exynos5-common/pwm.h
parent9bcab0c72bea6188ebf735ce08ba269ef5f9a272 (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/exynos5-common/pwm.h')
-rw-r--r--src/cpu/samsung/exynos5-common/pwm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/samsung/exynos5-common/pwm.h b/src/cpu/samsung/exynos5-common/pwm.h
index e35d88d2d6..a4e0acf693 100644
--- a/src/cpu/samsung/exynos5-common/pwm.h
+++ b/src/cpu/samsung/exynos5-common/pwm.h
@@ -42,7 +42,7 @@
#define TCON_AUTO_RELOAD(x) (1 << (TCON_OFFSET(x) + 3))
#define TCON4_AUTO_RELOAD (1 << 22)
-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__
struct s5p_timer {
unsigned int tcfg0;
unsigned int tcfg1;
@@ -63,6 +63,6 @@ struct s5p_timer {
unsigned int tcnto4;
unsigned int tintcstat;
};
-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */
#endif