]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
mips: Use common _AC macro now.
authorTom Rini <trini@konsulko.com>
Tue, 10 Jan 2017 13:13:55 +0000 (08:13 -0500)
committerTom Rini <trini@konsulko.com>
Tue, 10 Jan 2017 13:19:26 +0000 (08:19 -0500)
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>
arch/mips/include/asm/const.h

index f600e7a5b7565606e2a7b9b4e2d28f44c601c9b2..0a7eb8322320c6526473cc16899030ecd6af2957 100644 (file)
  */
 
 #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