diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-06-29 17:28:02 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-07-01 03:20:58 +0200 |
commit | 36de4652e04fcc2c6d92886404c78225e7b6468c (patch) | |
tree | 30f9c2b69d9162e69eb0fc8c2db89cea8af9e736 /src/soc | |
parent | 2656219008045b983d4f72adef0e0a09f6e6265c (diff) | |
download | coreboot-36de4652e04fcc2c6d92886404c78225e7b6468c.tar.xz |
soc/intel/common: use nvs.h include for nhlt code
The nvs.h header is the one which defines global_nvs_t proper.
Don't rely on an indirect inclusion.
Change-Id: I89d6a73f65e408c73f068b4a35b5efd361a6e5d3
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/15503
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/common/nhlt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/nhlt.c b/src/soc/intel/common/nhlt.c index d498152406..03a4b4f03c 100644 --- a/src/soc/intel/common/nhlt.c +++ b/src/soc/intel/common/nhlt.c @@ -15,7 +15,7 @@ #include <cbmem.h> #include <nhlt.h> -#include <soc/acpi.h> +#include <soc/nvs.h> uintptr_t nhlt_soc_serialize(struct nhlt *nhlt, uintptr_t acpi_addr) { |