On Wed, Aug 28, 2019 at 02:38:18PM +0100, Alexandru Elisei wrote: > pgtable.h is used only by mmu.c, where it is included after alloc_page.h. > > Signed-off-by: Alexandru Elisei <alexandru.elisei@xxxxxxx> > --- > lib/arm/asm/pgtable.h | 1 + > lib/arm64/asm/pgtable.h | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/lib/arm/asm/pgtable.h b/lib/arm/asm/pgtable.h > index 241dff69b38a..b01c34348321 100644 > --- a/lib/arm/asm/pgtable.h > +++ b/lib/arm/asm/pgtable.h > @@ -13,6 +13,7 @@ > * > * This work is licensed under the terms of the GNU GPL, version 2. > */ > +#include <alloc_page.h> > > /* > * We can convert va <=> pa page table addresses with simple casts > diff --git a/lib/arm64/asm/pgtable.h b/lib/arm64/asm/pgtable.h > index ee0a2c88cc18..e9dd49155564 100644 > --- a/lib/arm64/asm/pgtable.h > +++ b/lib/arm64/asm/pgtable.h > @@ -14,6 +14,7 @@ > * This work is licensed under the terms of the GNU GPL, version 2. > */ > #include <alloc.h> > +#include <alloc_page.h> > #include <asm/setup.h> > #include <asm/page.h> > #include <asm/pgtable-hwdef.h> > -- > 2.7.4 > Reviewed-by: Andrew Jones <drjones@xxxxxxxxxx>