diff options
author | Qianyu Gong <qianyu.gong@nxp.com> | 2016-02-18 13:01:59 +0800 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-02-24 08:51:13 -0800 |
commit | 2459afb1a783e34d37c0f7aeec43c77f4de4d480 (patch) | |
tree | 87f4e9e756bb75d43f6652cba6a964eeb58fb8f0 /arch | |
parent | 9f3e1b8a55060bcb2c52e2e3a828a70c7e106219 (diff) | |
download | u-boot-imx-2459afb1a783e34d37c0f7aeec43c77f4de4d480.zip u-boot-imx-2459afb1a783e34d37c0f7aeec43c77f4de4d480.tar.gz u-boot-imx-2459afb1a783e34d37c0f7aeec43c77f4de4d480.tar.bz2 |
qe: move drivers/qe/qe.h to include/fsl_qe.h
As the QE firmware struct is shared with Fman, move the header file
out of drivers/qe/.
Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu_init.c | 2 | ||||
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/fdt.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c index 4ae4a6c..f168375 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu_init.c +++ b/arch/powerpc/cpu/mpc85xx/cpu_init.c @@ -48,7 +48,7 @@ #include "../../../../drivers/block/fsl_sata.h" #ifdef CONFIG_U_QE -#include "../../../../drivers/qe/qe.h" +#include <fsl_qe.h> #endif DECLARE_GLOBAL_DATA_PTR; diff --git a/arch/powerpc/cpu/mpc85xx/fdt.c b/arch/powerpc/cpu/mpc85xx/fdt.c index 7270be1..50eef05 100644 --- a/arch/powerpc/cpu/mpc85xx/fdt.c +++ b/arch/powerpc/cpu/mpc85xx/fdt.c @@ -19,7 +19,7 @@ #ifdef CONFIG_FSL_ESDHC #include <fsl_esdhc.h> #endif -#include "../../../../drivers/qe/qe.h" /* For struct qe_firmware */ +#include <fsl_qe.h> /* For struct qe_firmware */ DECLARE_GLOBAL_DATA_PTR; |