summaryrefslogtreecommitdiff
path: root/arch/powerpc
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-06-03 16:38:59 +0300
committerTom Rini <trini@konsulko.com>2021-06-23 15:45:03 +0300
commit8b95deafc511b56a73b8565f411a49d98755c957 (patch)
treeb23f05d6c6757e4aa226eaf187a5bf61f0d932b7 /arch/powerpc
parent5ad9220bf7b54d958627dd8a0475a44c5a238f0a (diff)
downloadu-boot-8b95deafc511b56a73b8565f411a49d98755c957.tar.xz
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>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/include/asm/global_data.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/global_data.h b/arch/powerpc/include/asm/global_data.h
index 192a02d347..90bf5a2aea 100644
--- a/arch/powerpc/include/asm/global_data.h
+++ b/arch/powerpc/include/asm/global_data.h
@@ -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 */