powerpc: Don't use relative include for config.h in global_data.h

As there is an arch/powerpc/include/asm/config.h file using "" to get
config.h here can lead to using that rather than include/config.h.  This
in turn can lead to a mismatch in the size of gd.

Cc: Matt Merhar <mattmerhar@protonmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Tested-by: Matt Merhar <mattmerhar@protonmail.com>
This commit is contained in:
Tom Rini 2021-06-03 09:38:59 -04:00
parent 5ad9220bf7
commit 8b95deafc5
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
#ifndef __ASM_GBL_DATA_H
#define __ASM_GBL_DATA_H
#include "config.h"
#include <config.h>
#include "asm/types.h"
/* Architecture-specific global data */