Aaron Durbin (adurbin@chromium.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15503
-gerrit
commit d1ff194ba382e58b03acdc86e51fefd076324cc7 Author: Aaron Durbin adurbin@chromium.org Date: Wed Jun 29 17:28:02 2016 -0500
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 --- src/soc/intel/common/nhlt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/soc/intel/common/nhlt.c b/src/soc/intel/common/nhlt.c index d498152..03a4b4f 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) {