Unverified Commit da1d25e7 authored by Paul Burton's avatar Paul Burton
Browse files

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: default avatarPaul Burton <paul.burton@mips.com>
Patchwork: https://patchwork.linux-mips.org/patch/20904/
Cc: linux-mips@linux-mips.org
parent fce362c7
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -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!