git: 66d9c2f38d2d - main - pst-raid.c: sort #includes
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 23 Nov 2023 16:07:55 UTC
The branch main has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=66d9c2f38d2db9e50c0dbf56dca4a2f3e6c3107c commit 66d9c2f38d2db9e50c0dbf56dca4a2f3e6c3107c Author: Mitchell Horne <mhorne@FreeBSD.org> AuthorDate: 2023-11-23 15:23:42 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2023-11-23 16:07:42 +0000 pst-raid.c: sort #includes Reviewed by: imp, jhb MFC after: 3 days Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D42336 --- sys/dev/pst/pst-raid.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/sys/dev/pst/pst-raid.c b/sys/dev/pst/pst-raid.c index 076925b27a6b..4e9c4fb724bc 100644 --- a/sys/dev/pst/pst-raid.c +++ b/sys/dev/pst/pst-raid.c @@ -28,30 +28,32 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/cdefs.h> #include <sys/param.h> #include <sys/systm.h> -#include <sys/kernel.h> #include <sys/module.h> -#include <sys/bus.h> #include <sys/bio.h> +#include <sys/bus.h> #include <sys/conf.h> #include <sys/eventhandler.h> -#include <sys/malloc.h> +#include <sys/kernel.h> #include <sys/lock.h> +#include <sys/malloc.h> #include <sys/mutex.h> +#include <sys/rman.h> + #include <vm/vm.h> #include <vm/pmap.h> + #include <machine/stdarg.h> #include <machine/resource.h> #include <machine/bus.h> -#include <sys/rman.h> + #include <dev/pci/pcivar.h> #include <dev/pci/pcireg.h> -#include <geom/geom_disk.h> - #include "dev/pst/pst-iop.h" +#include <geom/geom_disk.h> + struct pst_softc { struct iop_softc *iop; struct i2o_lct_entry *lct;