diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2023-02-24 16:15:38 -0800 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2023-12-19 18:29:20 -0500 |
commit | ea9f879d037ff4d7851f35ba91dc774dd9033308 (patch) | |
tree | 00617cb462720703cf2eeef6174ef6c47d2b42be /drivers/gpu/drm/xe/xe_vm_madvise.c | |
parent | ba11f1b7ea5b59fdf58e5dec7b73fa914de65f8d (diff) |
drm/xe: Sort includes
Sort includes and split them in blocks:
1) .h corresponding to the .c. Example: xe_bb.c should have a "#include
"xe_bb.h" first.
2) #include <linux/...>
3) #include <drm/...>
4) local includes
5) i915 includes
This is accomplished by running
`clang-format --style=file -i --sort-includes drivers/gpu/drm/xe/*.[ch]`
and ignoring all the changes after the includes. There are also some
manual tweaks to split the blocks.
v2: Also sort includes in headers
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_vm_madvise.c')
-rw-r--r-- | drivers/gpu/drm/xe/xe_vm_madvise.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/gpu/drm/xe/xe_vm_madvise.c b/drivers/gpu/drm/xe/xe_vm_madvise.c index 4498aa2fbd47..89a02c8e0424 100644 --- a/drivers/gpu/drm/xe/xe_vm_madvise.c +++ b/drivers/gpu/drm/xe/xe_vm_madvise.c @@ -3,13 +3,15 @@ * Copyright © 2021 Intel Corporation */ -#include <drm/xe_drm.h> -#include <drm/ttm/ttm_tt.h> +#include "xe_vm_madvise.h" + #include <linux/nospec.h> +#include <drm/ttm/ttm_tt.h> +#include <drm/xe_drm.h> + #include "xe_bo.h" #include "xe_vm.h" -#include "xe_vm_madvise.h" static int madvise_preferred_mem_class(struct xe_device *xe, struct xe_vm *vm, struct xe_vma **vmas, int num_vmas, |