Module Name: src
Committed By: riastradh
Date: Tue Jun 25 14:53:45 UTC 2024
Modified Files:
src/sys/dev/pci: virtio_pci.c
Log Message:
virtio_pci.c: Sort includes.
No functional change intended.
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/pci/virtio_pci.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/virtio_pci.c
diff -u src/sys/dev/pci/virtio_pci.c:1.49 src/sys/dev/pci/virtio_pci.c:1.50
--- src/sys/dev/pci/virtio_pci.c:1.49 Tue Jun 25 14:22:48 2024
+++ src/sys/dev/pci/virtio_pci.c Tue Jun 25 14:53:45 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: virtio_pci.c,v 1.49 2024/06/25 14:22:48 riastradh Exp $ */
+/* $NetBSD: virtio_pci.c,v 1.50 2024/06/25 14:53:45 riastradh Exp $ */
/*
* Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -28,17 +28,18 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: virtio_pci.c,v 1.49 2024/06/25 14:22:48 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: virtio_pci.c,v 1.50 2024/06/25 14:53:45 riastradh Exp $");
#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/kmem.h>
-#include <sys/module.h>
+#include <sys/types.h>
+
+#include <sys/device.h>
#include <sys/endian.h>
#include <sys/interrupt.h>
+#include <sys/kmem.h>
+#include <sys/module.h>
#include <sys/syslog.h>
-
-#include <sys/device.h>
+#include <sys/systm.h>
#include <dev/pci/pcidevs.h>
#include <dev/pci/pcireg.h>