git: dfd6b1ee5b83 - stable/14 - subr_firmware: Sort includes
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 16 Oct 2024 14:32:04 UTC
The branch stable/14 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=dfd6b1ee5b83f8616b8538a63f493558cf3477ba commit dfd6b1ee5b83f8616b8538a63f493558cf3477ba Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2024-02-05 03:12:37 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-10-16 14:19:21 +0000 subr_firmware: Sort includes Sponsored by: Netflix (cherry picked from commit 4b62b42a8dbd3be7c5e9e107fbba2c9adfa49673) --- sys/kern/subr_firmware.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/sys/kern/subr_firmware.c b/sys/kern/subr_firmware.c index 00b084bd0a07..6947bcb110e4 100644 --- a/sys/kern/subr_firmware.c +++ b/sys/kern/subr_firmware.c @@ -28,20 +28,20 @@ #include <sys/cdefs.h> #include <sys/param.h> +#include <sys/errno.h> +#include <sys/eventhandler.h> +#include <sys/firmware.h> #include <sys/kernel.h> -#include <sys/malloc.h> -#include <sys/queue.h> -#include <sys/taskqueue.h> -#include <sys/systm.h> +#include <sys/linker.h> #include <sys/lock.h> +#include <sys/malloc.h> +#include <sys/module.h> #include <sys/mutex.h> -#include <sys/errno.h> -#include <sys/linker.h> -#include <sys/firmware.h> #include <sys/priv.h> #include <sys/proc.h> -#include <sys/module.h> -#include <sys/eventhandler.h> +#include <sys/queue.h> +#include <sys/systm.h> +#include <sys/taskqueue.h> #include <sys/filedesc.h> #include <sys/vnode.h>