diff options
author | Paul Burton <paul.burton@mips.com> | 2018-10-15 18:33:20 +0000 |
---|---|---|
committer | Paul Burton <paul.burton@mips.com> | 2018-10-15 23:11:13 -0700 |
commit | da1d25e79a46fab38c73570bd7c3a0f545fbbb9d (patch) | |
tree | 6671a35407a8ac1755e82fd863c52b1203332642 | |
parent | fce362c7fc3f89687b4b0eecefd7de8baa91a679 (diff) | |
download | linux-da1d25e79a46fab38c73570bd7c3a0f545fbbb9d.tar.gz linux-da1d25e79a46fab38c73570bd7c3a0f545fbbb9d.tar.bz2 linux-da1d25e79a46fab38c73570bd7c3a0f545fbbb9d.zip |
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 <paul.burton@mips.com>
Patchwork: https://patchwork.linux-mips.org/patch/20904/
Cc: linux-mips@linux-mips.org
-rw-r--r-- | arch/mips/include/asm/asm.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/mips/include/asm/asm.h b/arch/mips/include/asm/asm.h index 03711771d51f..0cd72b43079f 100644 --- a/arch/mips/include/asm/asm.h +++ b/arch/mips/include/asm/asm.h @@ -113,17 +113,6 @@ symbol = value .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! * |