diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-07 10:04:00 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-10-27 15:46:39 +0000 |
commit | 1bb4f84202ac96dd9081f8635a5b385992f0f294 (patch) | |
tree | 4651562d77f8591035d86c83a2b8a0e6fb007fea /src/console | |
parent | 3b1eac5c04edc78cf1818df1496eb5f03b129e3a (diff) |
console/post.c: Sort includes
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: I3faa1baf41ff8f0447d18b131a9c9c225e9fc8a4
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68202
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/post.c b/src/console/post.c index 35e87799a8..f3a146318f 100644 --- a/src/console/post.c +++ b/src/console/post.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <stdint.h> #include <console/console.h> +#include <stdint.h> /* Write POST information */ void __weak arch_post_code(uint8_t value) { } |