git: 4ce1f6162e9e - main - linuxkpi: some style, wrap too long lines
Konstantin Belousov
kib at FreeBSD.org
Mon Apr 19 18:38:17 UTC 2021
The branch main has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=4ce1f6162e9eb576ac40f24b8538f55e83ef5eb4
commit 4ce1f6162e9eb576ac40f24b8538f55e83ef5eb4
Author: Konstantin Belousov <konstantinb at nvidia.com>
AuthorDate: 2021-03-11 06:08:51 +0000
Commit: Konstantin Belousov <kib at FreeBSD.org>
CommitDate: 2021-04-19 18:34:07 +0000
linuxkpi: some style, wrap too long lines
Reviewed by: hselasky
Sponsored by: Mellanox Technologies/NVidia Networking
MFC after: 1 week
---
sys/compat/linuxkpi/common/src/linux_current.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sys/compat/linuxkpi/common/src/linux_current.c b/sys/compat/linuxkpi/common/src/linux_current.c
index 611d10df3383..081eab8edab1 100644
--- a/sys/compat/linuxkpi/common/src/linux_current.c
+++ b/sys/compat/linuxkpi/common/src/linux_current.c
@@ -236,7 +236,8 @@ linux_current_init(void *arg __unused)
linuxkpi_thread_dtor_tag = EVENTHANDLER_REGISTER(thread_dtor,
linuxkpi_thread_dtor, NULL, EVENTHANDLER_PRI_ANY);
}
-SYSINIT(linux_current, SI_SUB_EVENTHANDLER, SI_ORDER_SECOND, linux_current_init, NULL);
+SYSINIT(linux_current, SI_SUB_EVENTHANDLER, SI_ORDER_SECOND,
+ linux_current_init, NULL);
static void
linux_current_uninit(void *arg __unused)
@@ -260,4 +261,5 @@ linux_current_uninit(void *arg __unused)
EVENTHANDLER_DEREGISTER(thread_dtor, linuxkpi_thread_dtor_tag);
lkpi_alloc_current = linux_alloc_current_noop;
}
-SYSUNINIT(linux_current, SI_SUB_EVENTHANDLER, SI_ORDER_SECOND, linux_current_uninit, NULL);
+SYSUNINIT(linux_current, SI_SUB_EVENTHANDLER, SI_ORDER_SECOND,
+ linux_current_uninit, NULL);
More information about the dev-commits-src-all
mailing list