diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-11-30 14:53:24 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-01-16 11:51:07 +0000 |
commit | 5c29daa150c5ba0a8acbdec90013f6526ac8d1f7 (patch) | |
tree | bc8db9ff7e752d2532531bbd6dad8c8713841f39 /src/lib | |
parent | f86baf3e903ddd81369b9ef7605fb5463498cbff (diff) |
buildsystem: Promote rules.h to default include
Does not fix 3rdparty/, *.S or *.ld or yet.
Change-Id: I66b48013dd89540b35ab219d2b64bc13f5f19cda
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/17656
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/bootmode.c | 1 | ||||
-rw-r--r-- | src/lib/cbmem_common.c | 1 | ||||
-rw-r--r-- | src/lib/ext_stage_cache.c | 1 | ||||
-rw-r--r-- | src/lib/imd_cbmem.c | 1 | ||||
-rw-r--r-- | src/lib/prog_loaders.c | 1 | ||||
-rw-r--r-- | src/lib/romstage_handoff.c | 1 | ||||
-rw-r--r-- | src/lib/timestamp.c | 1 |
7 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/bootmode.c b/src/lib/bootmode.c index dcee2d175c..29682eb54d 100644 --- a/src/lib/bootmode.c +++ b/src/lib/bootmode.c @@ -13,7 +13,6 @@ * GNU General Public License for more details. */ -#include <rules.h> #include <bootmode.h> #include <vendorcode/google/chromeos/chromeos.h> diff --git a/src/lib/cbmem_common.c b/src/lib/cbmem_common.c index ba4660920d..4010494118 100644 --- a/src/lib/cbmem_common.c +++ b/src/lib/cbmem_common.c @@ -15,7 +15,6 @@ #include <cbmem.h> #include <bootstate.h> -#include <rules.h> #include <symbols.h> void cbmem_run_init_hooks(int is_recovery) diff --git a/src/lib/ext_stage_cache.c b/src/lib/ext_stage_cache.c index c3d4aee190..354342d41b 100644 --- a/src/lib/ext_stage_cache.c +++ b/src/lib/ext_stage_cache.c @@ -18,7 +18,6 @@ #include <cbmem.h> #include <console/console.h> #include <imd.h> -#include <rules.h> #include <stage_cache.h> #include <string.h> diff --git a/src/lib/imd_cbmem.c b/src/lib/imd_cbmem.c index d6eed28860..ff1cb95094 100644 --- a/src/lib/imd_cbmem.c +++ b/src/lib/imd_cbmem.c @@ -18,7 +18,6 @@ #include <console/console.h> #include <cbmem.h> #include <imd.h> -#include <rules.h> #include <string.h> #include <stdlib.h> #include <arch/early_variables.h> diff --git a/src/lib/prog_loaders.c b/src/lib/prog_loaders.c index b7634177ff..ac80a62c9d 100644 --- a/src/lib/prog_loaders.c +++ b/src/lib/prog_loaders.c @@ -25,7 +25,6 @@ #include <reset.h> #include <romstage_handoff.h> #include <rmodule.h> -#include <rules.h> #include <stage_cache.h> #include <symbols.h> #include <timestamp.h> diff --git a/src/lib/romstage_handoff.c b/src/lib/romstage_handoff.c index bdfdb642b8..04ead0a83f 100644 --- a/src/lib/romstage_handoff.c +++ b/src/lib/romstage_handoff.c @@ -18,7 +18,6 @@ #include <cbmem.h> #include <console/console.h> #include <romstage_handoff.h> -#include <rules.h> struct romstage_handoff { /* Indicate if the current boot is an S3 resume. If diff --git a/src/lib/timestamp.c b/src/lib/timestamp.c index 36d02516a3..6885e7b55b 100644 --- a/src/lib/timestamp.c +++ b/src/lib/timestamp.c @@ -23,7 +23,6 @@ #include <timer.h> #include <timestamp.h> #include <arch/early_variables.h> -#include <rules.h> #include <smp/node.h> #define MAX_TIMESTAMPS 192 |