From: Tom Rini <trini@konsulko.com>
Date: Tue, 10 Jan 2017 13:13:55 +0000 (-0500)
Subject: mips: Use common _AC macro now.
X-Git-Tag: v2025.01-rc5-pxa1908~7763
X-Git-Url: http://git.dujemihanovic.xyz/img/%22http:/www.sics.se/static/gitweb.css?a=commitdiff_plain;h=86f21c96f467368;p=u-boot.git

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>
---

diff --git a/arch/mips/include/asm/const.h b/arch/mips/include/asm/const.h
index f600e7a5b7..0a7eb83223 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