aboutsummaryrefslogtreecommitdiffstats
path: root/arch/xtensa/include/asm/coprocessor.h
diff options
context:
space:
mode:
authorMax Filippov <jcmvbkbc@gmail.com>2022-04-15 02:50:17 -0700
committerMax Filippov <jcmvbkbc@gmail.com>2022-05-01 19:51:22 -0700
commit3e554d47dfe3f1d0639fd3d2d4f64bca0e5e62e0 (patch)
treeb093ed00258416ab2482cd866a6a8c5e5209ed03 /arch/xtensa/include/asm/coprocessor.h
parentxtensa: clean up exception handler prototypes (diff)
downloadlinux-dev-3e554d47dfe3f1d0639fd3d2d4f64bca0e5e62e0.tar.xz
linux-dev-3e554d47dfe3f1d0639fd3d2d4f64bca0e5e62e0.zip
xtensa: clean up declarations in coprocessor.h
Drop 'extern' from all function declarations. Add parameter names in declarations. Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to '')
-rw-r--r--arch/xtensa/include/asm/coprocessor.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/xtensa/include/asm/coprocessor.h b/arch/xtensa/include/asm/coprocessor.h
index 0fbe2a740b8d..a360efced7e7 100644
--- a/arch/xtensa/include/asm/coprocessor.h
+++ b/arch/xtensa/include/asm/coprocessor.h
@@ -143,10 +143,9 @@ 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_flush(struct thread_info*, int);
-
-extern void coprocessor_release_all(struct thread_info*);
-extern void coprocessor_flush_all(struct thread_info*);
+void coprocessor_flush(struct thread_info *ti, int cp_index);
+void coprocessor_release_all(struct thread_info *ti);
+void coprocessor_flush_all(struct thread_info *ti);
#endif /* XTENSA_HAVE_COPROCESSORS */