Message ID | 20231025065316.56817-7-philmd@linaro.org |
---|---|
State | New |
Headers | show |
Series | hw/arm: Move 'hw/arm/boot.h' from header to source | expand |
On 08:53 Wed 25 Oct , Philippe Mathieu-Daudé wrote: > "hw/arm/boot.h" is only required on the source file. > > Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Luc Michel <luc.michel@amd.com> > --- > include/hw/arm/fsl-imx6.h | 1 - > hw/arm/sabrelite.c | 1 + > 2 files changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/hw/arm/fsl-imx6.h b/include/hw/arm/fsl-imx6.h > index 5b4d48da08..519b871014 100644 > --- a/include/hw/arm/fsl-imx6.h > +++ b/include/hw/arm/fsl-imx6.h > @@ -17,7 +17,6 @@ > #ifndef FSL_IMX6_H > #define FSL_IMX6_H > > -#include "hw/arm/boot.h" > #include "hw/cpu/a9mpcore.h" > #include "hw/misc/imx6_ccm.h" > #include "hw/misc/imx6_src.h" > diff --git a/hw/arm/sabrelite.c b/hw/arm/sabrelite.c > index 41191245b8..56f184b9ae 100644 > --- a/hw/arm/sabrelite.c > +++ b/hw/arm/sabrelite.c > @@ -13,6 +13,7 @@ > #include "qemu/osdep.h" > #include "qapi/error.h" > #include "hw/arm/fsl-imx6.h" > +#include "hw/arm/boot.h" > #include "hw/boards.h" > #include "hw/qdev-properties.h" > #include "qemu/error-report.h" > -- > 2.41.0 > > --
diff --git a/include/hw/arm/fsl-imx6.h b/include/hw/arm/fsl-imx6.h index 5b4d48da08..519b871014 100644 --- a/include/hw/arm/fsl-imx6.h +++ b/include/hw/arm/fsl-imx6.h @@ -17,7 +17,6 @@ #ifndef FSL_IMX6_H #define FSL_IMX6_H -#include "hw/arm/boot.h" #include "hw/cpu/a9mpcore.h" #include "hw/misc/imx6_ccm.h" #include "hw/misc/imx6_src.h" diff --git a/hw/arm/sabrelite.c b/hw/arm/sabrelite.c index 41191245b8..56f184b9ae 100644 --- a/hw/arm/sabrelite.c +++ b/hw/arm/sabrelite.c @@ -13,6 +13,7 @@ #include "qemu/osdep.h" #include "qapi/error.h" #include "hw/arm/fsl-imx6.h" +#include "hw/arm/boot.h" #include "hw/boards.h" #include "hw/qdev-properties.h" #include "qemu/error-report.h"
"hw/arm/boot.h" is only required on the source file. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- include/hw/arm/fsl-imx6.h | 1 - hw/arm/sabrelite.c | 1 + 2 files changed, 1 insertion(+), 1 deletion(-)