* [PATCH] ARM: NXP i.MX8MN EVK: Drop unnecessary IMD_USED_OF
@ 2023-05-02 12:30 Sascha Hauer
2023-05-02 15:36 ` Ahmad Fatoum
0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2023-05-02 12:30 UTC (permalink / raw)
To: Barebox List
IMD tags are now automatically referenced when the DT itself is
referenced. IMD_USED_OF is no longer needed.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
arch/arm/boards/nxp-imx8mn-evk/lowlevel.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c b/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
index 398dfb33ae..23504ee965 100644
--- a/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
+++ b/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
@@ -155,8 +155,5 @@ ENTRY_FUNCTION(start_nxp_imx8mn_evk, r0, r1, r2)
relocate_to_current_adr();
setup_c();
- IMD_USED_OF(imx8mn_evk);
- IMD_USED_OF(imx8mn_ddr4_evk);
-
nxp_imx8mn_evk_start();
}
--
2.39.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: NXP i.MX8MN EVK: Drop unnecessary IMD_USED_OF
2023-05-02 12:30 [PATCH] ARM: NXP i.MX8MN EVK: Drop unnecessary IMD_USED_OF Sascha Hauer
@ 2023-05-02 15:36 ` Ahmad Fatoum
2023-05-02 16:11 ` Marco Felsch
0 siblings, 1 reply; 3+ messages in thread
From: Ahmad Fatoum @ 2023-05-02 15:36 UTC (permalink / raw)
To: Sascha Hauer, Barebox List
On 02.05.23 14:30, Sascha Hauer wrote:
> IMD tags are now automatically referenced when the DT itself is
> referenced. IMD_USED_OF is no longer needed.
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> arch/arm/boards/nxp-imx8mn-evk/lowlevel.c | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c b/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
> index 398dfb33ae..23504ee965 100644
> --- a/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
> +++ b/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
> @@ -155,8 +155,5 @@ ENTRY_FUNCTION(start_nxp_imx8mn_evk, r0, r1, r2)
> relocate_to_current_adr();
> setup_c();
>
> - IMD_USED_OF(imx8mn_evk);
> - IMD_USED_OF(imx8mn_ddr4_evk);
> -
> nxp_imx8mn_evk_start();
> }
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: NXP i.MX8MN EVK: Drop unnecessary IMD_USED_OF
2023-05-02 15:36 ` Ahmad Fatoum
@ 2023-05-02 16:11 ` Marco Felsch
0 siblings, 0 replies; 3+ messages in thread
From: Marco Felsch @ 2023-05-02 16:11 UTC (permalink / raw)
To: Ahmad Fatoum; +Cc: Barebox List
Hi Ahmad, Sascha,
On 23-05-02, Ahmad Fatoum wrote:
> On 02.05.23 14:30, Sascha Hauer wrote:
> > IMD tags are now automatically referenced when the DT itself is
> > referenced. IMD_USED_OF is no longer needed.
thanks for the effort you put into this feature :)
> > Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
>
> Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Reviewed-by: Marco Felsch <m.felsch@pengutronix.de>
Regards,
Marco
>
> > ---
> > arch/arm/boards/nxp-imx8mn-evk/lowlevel.c | 3 ---
> > 1 file changed, 3 deletions(-)
> >
> > diff --git a/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c b/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
> > index 398dfb33ae..23504ee965 100644
> > --- a/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
> > +++ b/arch/arm/boards/nxp-imx8mn-evk/lowlevel.c
> > @@ -155,8 +155,5 @@ ENTRY_FUNCTION(start_nxp_imx8mn_evk, r0, r1, r2)
> > relocate_to_current_adr();
> > setup_c();
> >
> > - IMD_USED_OF(imx8mn_evk);
> > - IMD_USED_OF(imx8mn_ddr4_evk);
> > -
> > nxp_imx8mn_evk_start();
> > }
>
> --
> Pengutronix e.K. | |
> Steuerwalder Str. 21 | http://www.pengutronix.de/ |
> 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
>
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-05-02 16:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-02 12:30 [PATCH] ARM: NXP i.MX8MN EVK: Drop unnecessary IMD_USED_OF Sascha Hauer
2023-05-02 15:36 ` Ahmad Fatoum
2023-05-02 16:11 ` Marco Felsch
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox