From 4ce1f6162e9eb576ac40f24b8538f55e83ef5eb4 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Thu, 11 Mar 2021 08:08:51 +0200 Subject: [PATCH] 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);