]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
amdtee: Sort header includes
authorMario Limonciello <mario.limonciello@amd.com>
Mon, 21 Apr 2025 15:22:23 +0000 (10:22 -0500)
committerJens Wiklander <jens.wiklander@linaro.org>
Tue, 29 Apr 2025 08:57:57 +0000 (10:57 +0200)
Various headers have been added over time that are not added alphabetically
and a private header is used before one of the linux/ headers.

Resort the list.

Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Reviewed-by: Sumit Garg <sumit.garg@oss.qualcomm.com>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
drivers/tee/amdtee/core.c

index a44625d0764016e590c6030bfc1c145b548c56c2..fb39d9a19c6989026b3c08d8959690ff7b9ae7e6 100644 (file)
@@ -6,18 +6,19 @@
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
 #include <linux/errno.h>
+#include <linux/device.h>
+#include <linux/firmware.h>
 #include <linux/io.h>
+#include <linux/mm.h>
 #include <linux/module.h>
+#include <linux/psp-tee.h>
 #include <linux/slab.h>
 #include <linux/string.h>
-#include <linux/device.h>
 #include <linux/tee_core.h>
 #include <linux/types.h>
-#include <linux/mm.h>
 #include <linux/uaccess.h>
-#include <linux/firmware.h>
+
 #include "amdtee_private.h"
-#include <linux/psp-tee.h>
 
 static struct amdtee_driver_data *drv_data;
 static DEFINE_MUTEX(session_list_mutex);