diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-08-09 10:57:06 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-01 09:02:35 +0000 |
commit | 9660f0663417e40505d6899109e385d9ff82a856 (patch) | |
tree | 8d533cf398a62ec65585c1632f0c21c47ff36902 /src/cpu | |
parent | a8817fc05f17b61d629ef02bd1f3f5342d7c10fa (diff) |
cpu/x86/name/name.c: Clean up includes
Also sort includes alphabetically.
Change-Id: I49615434b140601ce599b4a63aa42c82874bd0f7
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/44315
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/x86/name/name.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/x86/name/name.c b/src/cpu/x86/name/name.c index a7d2c706e3..bf62aef298 100644 --- a/src/cpu/x86/name/name.c +++ b/src/cpu/x86/name/name.c @@ -1,9 +1,9 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <string.h> #include <arch/cpu.h> -#include <device/device.h> #include <cpu/x86/name.h> +#include <stdint.h> +#include <string.h> void fill_processor_name(char *processor_name) { |