Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

amdtee: Sort header includes

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>

authored by

Mario Limonciello and committed by
Jens Wiklander
136deca5 7b032366

+5 -4
+5 -4
drivers/tee/amdtee/core.c
··· 6 6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 7 7 8 8 #include <linux/errno.h> 9 + #include <linux/device.h> 10 + #include <linux/firmware.h> 9 11 #include <linux/io.h> 12 + #include <linux/mm.h> 10 13 #include <linux/module.h> 14 + #include <linux/psp-tee.h> 11 15 #include <linux/slab.h> 12 16 #include <linux/string.h> 13 - #include <linux/device.h> 14 17 #include <linux/tee_core.h> 15 18 #include <linux/types.h> 16 - #include <linux/mm.h> 17 19 #include <linux/uaccess.h> 18 - #include <linux/firmware.h> 20 + 19 21 #include "amdtee_private.h" 20 - #include <linux/psp-tee.h> 21 22 22 23 static struct amdtee_driver_data *drv_data; 23 24 static DEFINE_MUTEX(session_list_mutex);