diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2018-11-26 22:15:21 +0100 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2018-12-03 10:39:23 +0100 |
commit | 3ffc2df9c76d3e1e02367dc3361902c1e9870b5d (patch) | |
tree | 7e49b900d9c7b7d923864ecde359038908bbc6d5 /arch/xtensa/include | |
parent | xtensa: drop custom PTRACE_{PEEK,POKE}{TEXT,DATA} (diff) | |
download | linux-3ffc2df9c76d3e1e02367dc3361902c1e9870b5d.tar.xz linux-3ffc2df9c76d3e1e02367dc3361902c1e9870b5d.zip |
xtensa: drop unused coprocessor helper functions
coprocessor_save, coprocessor_load and coprocessor_restore are neither
used nor exported for use by modules. Drop them.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa/include')
-rw-r--r-- | arch/xtensa/include/asm/coprocessor.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/xtensa/include/asm/coprocessor.h b/arch/xtensa/include/asm/coprocessor.h index 677501b32dfc..eafe986a0246 100644 --- a/arch/xtensa/include/asm/coprocessor.h +++ b/arch/xtensa/include/asm/coprocessor.h @@ -157,10 +157,7 @@ typedef struct { XCHAL_CP7_SA_LIST(2) } xtregs_cp7_t __attribute__ ((aligned (XCHAL_CP7_SA_ALIGN))); extern struct thread_info* coprocessor_owner[XCHAL_CP_MAX]; -extern void coprocessor_save(void*, int); -extern void coprocessor_load(void*, int); extern void coprocessor_flush(struct thread_info*, int); -extern void coprocessor_restore(struct thread_info*, int); extern void coprocessor_release_all(struct thread_info*); extern void coprocessor_flush_all(struct thread_info*); |