All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title
@ 2025-07-23 13:45 Fabio Estevam
  2025-07-23 13:45 ` [PATCH 2/3] imx93_evk: Remove unneeded header files Fabio Estevam
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Fabio Estevam @ 2025-07-23 13:45 UTC (permalink / raw)
  To: peng.fan; +Cc: trini, u-boot, Fabio Estevam

The board name is "i.MX93 EVK", not "MEK".

Fix it accordingly.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/imx93_evk/MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/freescale/imx93_evk/MAINTAINERS b/board/freescale/imx93_evk/MAINTAINERS
index 34ba278fcdfd..eb6e669bd17e 100644
--- a/board/freescale/imx93_evk/MAINTAINERS
+++ b/board/freescale/imx93_evk/MAINTAINERS
@@ -1,4 +1,4 @@
-i.MX93 MEK BOARD
+i.MX93 EVK BOARD
 M:	Peng Fan <peng.fan@nxp.com>
 S:	Maintained
 F:	board/freescale/imx93_evk/
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 2/3] imx93_evk: Remove unneeded header files
  2025-07-23 13:45 [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title Fabio Estevam
@ 2025-07-23 13:45 ` Fabio Estevam
  2025-07-24  3:13   ` Peng Fan
  2025-07-23 13:45 ` [PATCH 3/3] imx93_evk: Remove PMIC and USB " Fabio Estevam
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2025-07-23 13:45 UTC (permalink / raw)
  To: peng.fan; +Cc: trini, u-boot, Fabio Estevam

There is nothing in this file that makes use of the definitions from
sizes.h and stringify.h.

Remove them.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 include/configs/imx93_evk.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/imx93_evk.h b/include/configs/imx93_evk.h
index 94355cf61e49..e7db0161126e 100644
--- a/include/configs/imx93_evk.h
+++ b/include/configs/imx93_evk.h
@@ -6,8 +6,6 @@
 #ifndef __IMX93_EVK_H
 #define __IMX93_EVK_H
 
-#include <linux/sizes.h>
-#include <linux/stringify.h>
 #include <asm/arch/imx-regs.h>
 
 #define CFG_SYS_UBOOT_BASE	\
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 3/3] imx93_evk: Remove PMIC and USB header files
  2025-07-23 13:45 [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title Fabio Estevam
  2025-07-23 13:45 ` [PATCH 2/3] imx93_evk: Remove unneeded header files Fabio Estevam
@ 2025-07-23 13:45 ` Fabio Estevam
  2025-07-24  3:14   ` Peng Fan
  2025-07-24  3:13 ` [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title Peng Fan
  2025-07-24 21:17 ` Fabio Estevam
  3 siblings, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2025-07-23 13:45 UTC (permalink / raw)
  To: peng.fan; +Cc: trini, u-boot, Fabio Estevam

There is no PMIC and USB related C code in this file.

Remove these unneeded header files.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 board/freescale/imx93_evk/imx93_evk.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/board/freescale/imx93_evk/imx93_evk.c b/board/freescale/imx93_evk/imx93_evk.c
index d84d56be5e1f..d62f94dc4189 100644
--- a/board/freescale/imx93_evk/imx93_evk.c
+++ b/board/freescale/imx93_evk/imx93_evk.c
@@ -13,11 +13,8 @@
 #include <asm/arch/sys_proto.h>
 #include <asm/arch-imx9/imx93_pins.h>
 #include <asm/arch/clock.h>
-#include <power/pmic.h>
 #include <dm/device.h>
 #include <dm/uclass.h>
-#include <usb.h>
-#include <dwc3-uboot.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title
  2025-07-23 13:45 [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title Fabio Estevam
  2025-07-23 13:45 ` [PATCH 2/3] imx93_evk: Remove unneeded header files Fabio Estevam
  2025-07-23 13:45 ` [PATCH 3/3] imx93_evk: Remove PMIC and USB " Fabio Estevam
@ 2025-07-24  3:13 ` Peng Fan
  2025-07-24 21:17 ` Fabio Estevam
  3 siblings, 0 replies; 7+ messages in thread
From: Peng Fan @ 2025-07-24  3:13 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: peng.fan, trini, u-boot

On Wed, Jul 23, 2025 at 10:45:55AM -0300, Fabio Estevam wrote:
>The board name is "i.MX93 EVK", not "MEK".
>
>Fix it accordingly.
>
>Signed-off-by: Fabio Estevam <festevam@gmail.com>

Acked-by: Peng Fan <peng.fan@nxp.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 2/3] imx93_evk: Remove unneeded header files
  2025-07-23 13:45 ` [PATCH 2/3] imx93_evk: Remove unneeded header files Fabio Estevam
@ 2025-07-24  3:13   ` Peng Fan
  0 siblings, 0 replies; 7+ messages in thread
From: Peng Fan @ 2025-07-24  3:13 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: peng.fan, trini, u-boot

On Wed, Jul 23, 2025 at 10:45:56AM -0300, Fabio Estevam wrote:
>There is nothing in this file that makes use of the definitions from
>sizes.h and stringify.h.
>
>Remove them.
>
>Signed-off-by: Fabio Estevam <festevam@gmail.com>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 3/3] imx93_evk: Remove PMIC and USB header files
  2025-07-23 13:45 ` [PATCH 3/3] imx93_evk: Remove PMIC and USB " Fabio Estevam
@ 2025-07-24  3:14   ` Peng Fan
  0 siblings, 0 replies; 7+ messages in thread
From: Peng Fan @ 2025-07-24  3:14 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: peng.fan, trini, u-boot

On Wed, Jul 23, 2025 at 10:45:57AM -0300, Fabio Estevam wrote:
>There is no PMIC and USB related C code in this file.
>
>Remove these unneeded header files.
>
>Signed-off-by: Fabio Estevam <festevam@gmail.com>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title
  2025-07-23 13:45 [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title Fabio Estevam
                   ` (2 preceding siblings ...)
  2025-07-24  3:13 ` [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title Peng Fan
@ 2025-07-24 21:17 ` Fabio Estevam
  3 siblings, 0 replies; 7+ messages in thread
From: Fabio Estevam @ 2025-07-24 21:17 UTC (permalink / raw)
  To: peng.fan; +Cc: trini, u-boot

On Wed, Jul 23, 2025 at 10:46 AM Fabio Estevam <festevam@gmail.com> wrote:
>
> The board name is "i.MX93 EVK", not "MEK".
>
> Fix it accordingly.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Applied the series, thanks.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2025-07-24 21:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-23 13:45 [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title Fabio Estevam
2025-07-23 13:45 ` [PATCH 2/3] imx93_evk: Remove unneeded header files Fabio Estevam
2025-07-24  3:13   ` Peng Fan
2025-07-23 13:45 ` [PATCH 3/3] imx93_evk: Remove PMIC and USB " Fabio Estevam
2025-07-24  3:14   ` Peng Fan
2025-07-24  3:13 ` [PATCH 1/3] imx93_evk: Fix the board name in MAINTAINERS title Peng Fan
2025-07-24 21:17 ` Fabio Estevam

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.