From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Tue, 10 Jan 2017 18:06:56 -0500 Subject: [U-Boot] [PATCH] mips: Use common _AC macro now. In-Reply-To: <1483547774-7005-1-git-send-email-jagan@openedev.com> References: <1483547774-7005-1-git-send-email-jagan@openedev.com> Message-ID: <1484089616-3300-1-git-send-email-trini@konsulko.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- arch/mips/include/asm/const.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/arch/mips/include/asm/const.h b/arch/mips/include/asm/const.h index f600e7a5b756..0a7eb8322320 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 -- 1.9.1