aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-mips/sibyte/sb1250_defs.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2006-09-25 15:49:49 +0100
committerRalf Baechle <ralf@linux-mips.org>2006-09-27 13:37:57 +0100
commit36396f3c36b04f79438f87a0fccfa76aa3de6af9 (patch)
tree2e9e26d7ace9005502014a1e624a34792f5be925 /include/asm-mips/sibyte/sb1250_defs.h
parent[MIPS] Have headers_install install <asm/cachectl.h> and <asm/sysmips.h>. (diff)
downloadlinux-dev-36396f3c36b04f79438f87a0fccfa76aa3de6af9.tar.xz
linux-dev-36396f3c36b04f79438f87a0fccfa76aa3de6af9.zip
[MIPS] s/__ASSEMBLER__/__ASSEMBLY__/ for clarity sake.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/sibyte/sb1250_defs.h')
-rw-r--r--include/asm-mips/sibyte/sb1250_defs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-mips/sibyte/sb1250_defs.h b/include/asm-mips/sibyte/sb1250_defs.h
index 335dbaf1d831..a885491217c1 100644
--- a/include/asm-mips/sibyte/sb1250_defs.h
+++ b/include/asm-mips/sibyte/sb1250_defs.h
@@ -212,7 +212,7 @@
* Note: you'll need to define uint32_t and uint64_t in your headers.
*/
-#if !defined(__ASSEMBLER__)
+#if !defined(__ASSEMBLY__)
#define _SB_MAKE64(x) ((uint64_t)(x))
#define _SB_MAKE32(x) ((uint32_t)(x))
#else
@@ -251,9 +251,9 @@
*/
-#if defined(__mips64) && !defined(__ASSEMBLER__)
+#if defined(__mips64) && !defined(__ASSEMBLY__)
#define SBWRITECSR(csr,val) *((volatile uint64_t *) PHYS_TO_K1(csr)) = (val)
#define SBREADCSR(csr) (*((volatile uint64_t *) PHYS_TO_K1(csr)))
-#endif /* __ASSEMBLER__ */
+#endif /* __ASSEMBLY__ */
#endif