diff options
author | Paul Burton <paul.burton@mips.com> | 2018-10-15 18:33:19 +0000 |
---|---|---|
committer | Paul Burton <paul.burton@mips.com> | 2018-10-15 23:11:12 -0700 |
commit | fce362c7fc3f89687b4b0eecefd7de8baa91a679 (patch) | |
tree | fb21337f6e5bb16d27cb8ae5bec63eec6925b712 /arch/mips | |
parent | 7b2d13f2e24002c5113d30993c5297cb4fea1437 (diff) | |
download | linux-fce362c7fc3f89687b4b0eecefd7de8baa91a679.tar.gz linux-fce362c7fc3f89687b4b0eecefd7de8baa91a679.tar.bz2 linux-fce362c7fc3f89687b4b0eecefd7de8baa91a679.zip |
MIPS: Remove unused PIC macros
asm/asm.h contains CPRESTORE, CPADD & CPLOAD macros that are intended
for use with position independent code, but are not used anywhere in the
kernel - along with a comment to that effect. Remove the dead code.
Signed-off-by: Paul Burton <paul.burton@mips.com>
Patchwork: https://patchwork.linux-mips.org/patch/20903/
Cc: linux-mips@linux-mips.org
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/include/asm/asm.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/mips/include/asm/asm.h b/arch/mips/include/asm/asm.h index 4e4f60597c72..03711771d51f 100644 --- a/arch/mips/include/asm/asm.h +++ b/arch/mips/include/asm/asm.h @@ -30,23 +30,6 @@ #endif /* - * PIC specific declarations - * Not used for the kernel but here seems to be the right place. - */ -#ifdef __PIC__ -#define CPRESTORE(register) \ - .cprestore register -#define CPADD(register) \ - .cpadd register -#define CPLOAD(register) \ - .cpload register -#else -#define CPRESTORE(register) -#define CPADD(register) -#define CPLOAD(register) -#endif - -/* * LEAF - declare leaf routine */ #define LEAF(symbol) \ |