Skip to content

Commit e4ba684

Browse files
committed
tree-wide: Sort includes
This was done by running a locally built clang-format with llvm/llvm-project#137617 and llvm/llvm-project#137840 applied on all .c and .h files.
1 parent bfb643e commit e4ba684

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

boot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
#include "devicetree.h"
88
#include "drivers.h"
99
#include "efi-string-table.h"
10-
#include "efivars-fundamental.h"
1110
#include "efivars.h"
11+
#include "efivars-fundamental.h"
1212
#include "export-vars.h"
1313
#include "graphics.h"
1414
#include "initrd.h"

chid.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* SPDX-License-Identifier: BSD-3-Clause */
22
#pragma once
33

4-
#include "efi.h"
54
#include "chid-fundamental.h"
5+
#include "efi.h"
66

77
/* A .hwids PE section consists of a series of 'Device' structures. A 'Device' structure binds a CHID to some
88
* resource, for now only Devicetree blobs. Designed to be extensible to other types of resources, should the

efi-string.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# include "util.h"
88
#else
99
# include <stdlib.h>
10+
1011
# include "alloc-util.h"
1112
# define xnew(t, n) ASSERT_SE_PTR(new(t, n))
1213
# define xmalloc(n) ASSERT_SE_PTR(malloc(n))

0 commit comments

Comments
 (0)