Date: Fri, 2 Jun 2023 19:05:46 GMT From: Mark Johnston <markj@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: d0c829d7c73e - stable/13 - linuxkpi: Use modern function declarations Message-ID: <202306021905.352J5kFa041222@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) { }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202306021905.352J5kFa041222>