git: d0c829d7c73e - stable/13 - linuxkpi: Use modern function declarations
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 02 Jun 2023 19:05:46 UTC
The branch stable/13 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=d0c829d7c73e899df0243cbd811d16b04c5b9363 commit d0c829d7c73e899df0243cbd811d16b04c5b9363 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2023-06-02 19:03:55 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2023-06-02 19:03:55 +0000 linuxkpi: Use modern function declarations This is a direct commit to stable/13. Reported by: Jenkins --- sys/compat/linuxkpi/common/include/asm/fpu/api.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/compat/linuxkpi/common/include/asm/fpu/api.h b/sys/compat/linuxkpi/common/include/asm/fpu/api.h index 6fba15d1fd62..f1ca1cedbcf1 100644 --- a/sys/compat/linuxkpi/common/include/asm/fpu/api.h +++ b/sys/compat/linuxkpi/common/include/asm/fpu/api.h @@ -54,12 +54,12 @@ kernel_fpu_end(void) #else static inline void -kernel_fpu_begin() +kernel_fpu_begin(void) { } static inline void -kernel_fpu_end() +kernel_fpu_end(void) { }