aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <konstantinb@nvidia.com>2021-03-11 06:08:51 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2021-04-19 18:34:07 +0000
commit4ce1f6162e9eb576ac40f24b8538f55e83ef5eb4 (patch)
tree06f2bd319970452b1d3292950dd567190e93d2bb
parentecfbddf0cde3d4151217e3eb2d7c5388a423d397 (diff)
downloadsrc-4ce1f6162e9eb576ac40f24b8538f55e83ef5eb4.tar.gz
src-4ce1f6162e9eb576ac40f24b8538f55e83ef5eb4.zip
linuxkpi: some style, wrap too long lines
Reviewed by: hselasky Sponsored by: Mellanox Technologies/NVidia Networking MFC after: 1 week
-rw-r--r--sys/compat/linuxkpi/common/src/linux_current.c6
1 files 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);