Skip to content
Snippets Groups Projects
Commit 8b95deaf authored by Tom Rini's avatar Tom Rini
Browse files

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: default avatarTom Rini <trini@konsulko.com>
Tested-by: default avatarMatt Merhar <mattmerhar@protonmail.com>
parent 5ad9220b
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment