summaryrefslogtreecommitdiff
path: root/arch/mips
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-01-10 13:13:55 (GMT)
committerTom Rini <trini@konsulko.com>2017-01-10 13:19:26 (GMT)
commit86f21c96f46736825d8a9269dfbe31ef7991a7e6 (patch)
treee2958710f1a7e5918eaecffb69f167fa88fe82a3 /arch/mips
parent0b8404332ed08799ca0630e4cc868df039f206e3 (diff)
downloadu-boot-fsl-qoriq-86f21c96f46736825d8a9269dfbe31ef7991a7e6.tar.xz
mips: Use common _AC macro now.
MIPS no longer needs to have its own version of this macro now. Fixes: 2a6713b09b8d ("move UL() macro from armv8/mmu.h into common.h") Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/include/asm/const.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/mips/include/asm/const.h b/arch/mips/include/asm/const.h
index f600e7a..0a7eb83 100644
--- a/arch/mips/include/asm/const.h
+++ b/arch/mips/include/asm/const.h
@@ -17,11 +17,8 @@
*/
#ifdef __ASSEMBLY__
-#define _AC(X,Y) X
#define _AT(T,X) X
#else
-#define __AC(X,Y) (X##Y)
-#define _AC(X,Y) __AC(X,Y)
#define _AT(T,X) ((T)(X))
#endif