From: Paul Burton Date: Mon, 15 Oct 2018 18:33:20 +0000 (+0000) Subject: MIPS: Remove unused TTABLE macro X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=da1d25e79a46fab38c73570bd7c3a0f545fbbb9d;p=linux.git MIPS: Remove unused TTABLE macro asm/asm.h contains a TTABLE macro to generate "text tables" which would appear to be arrays of pointers to strings. It is unused throughout the kernel tree, so delete the dead code. Signed-off-by: Paul Burton Patchwork: https://patchwork.linux-mips.org/patch/20904/ Cc: linux-mips@linux-mips.org --- diff --git a/arch/mips/include/asm/asm.h b/arch/mips/include/asm/asm.h index 03711771d51fe..0cd72b43079f5 100644 --- a/arch/mips/include/asm/asm.h +++ b/arch/mips/include/asm/asm.h @@ -112,17 +112,6 @@ symbol = value 8: .asciiz msg; \ .popsection; -/* - * Build text tables - */ -#define TTABLE(string) \ - .pushsection .text; \ - .word 1f; \ - .popsection \ - .pushsection .data; \ -1: .asciiz string; \ - .popsection - /* * MIPS IV pref instruction. * Use with .set noreorder only!