git: 84a739406d7a - stable/13 - intrng: sort includes

From: Mitchell Horne <mhorne_at_FreeBSD.org>
Date: Fri, 17 Mar 2023 20:18:32 UTC
The branch stable/13 has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=84a739406d7abae6b6e081fccb30b88949d35a9e

commit 84a739406d7abae6b6e081fccb30b88949d35a9e
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2023-02-04 17:04:30 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2023-03-17 19:55:45 +0000

    intrng: sort includes
    
    MFC after:      3 days
    
    (cherry picked from commit 82e846df5bc20418b792f948fa5b558e523f0746)
---
 sys/kern/subr_intr.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/sys/kern/subr_intr.c b/sys/kern/subr_intr.c
index 16306c78cbd9..078f8e544f10 100644
--- a/sys/kern/subr_intr.c
+++ b/sys/kern/subr_intr.c
@@ -42,31 +42,31 @@ __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
 #include <sys/systm.h>
+#include <sys/bus.h>
+#include <sys/conf.h>
+#include <sys/cpuset.h>
+#include <sys/interrupt.h>
 #include <sys/kernel.h>
 #include <sys/lock.h>
-#include <sys/mutex.h>
-#include <sys/syslog.h>
 #include <sys/malloc.h>
+#include <sys/mutex.h>
 #include <sys/proc.h>
 #include <sys/queue.h>
-#include <sys/bus.h>
-#include <sys/interrupt.h>
-#include <sys/taskqueue.h>
-#include <sys/tree.h>
-#include <sys/conf.h>
-#include <sys/cpuset.h>
 #include <sys/rman.h>
 #include <sys/sched.h>
 #include <sys/smp.h>
 #include <sys/sysctl.h>
+#include <sys/syslog.h>
+#include <sys/taskqueue.h>
+#include <sys/tree.h>
 #include <sys/vmmeter.h>
 #ifdef HWPMC_HOOKS
 #include <sys/pmckern.h>
 #endif
 
 #include <machine/atomic.h>
-#include <machine/intr.h>
 #include <machine/cpu.h>
+#include <machine/intr.h>
 #include <machine/smp.h>
 #include <machine/stdarg.h>