All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 00/12] configs: clean up SDHC marco and MMCROOT
@ 2022-04-15  4:23 Peng Fan (OSS)
  2022-04-15  4:23 ` [PATCH V2 01/12] configs: imx8mm_evk: drop unused SDHC macro Peng Fan (OSS)
                   ` (11 more replies)
  0 siblings, 12 replies; 27+ messages in thread
From: Peng Fan (OSS) @ 2022-04-15  4:23 UTC (permalink / raw)
  To: sbabic, festevam; +Cc: peng.fan, u-boot

From: Peng Fan <peng.fan@nxp.com>


V2:
 Rebase to resolve conflicts
 Add R-b/A-b

For platforms with DM_MMC and SPL_DM_MMC, the SDHC macros are not needed.
CONFIG_MMCROOT could be actually dropped.
Drop IMX_FEC_BASE for boards that not use it

Tom, Stefano

this patches changes lots of files, not only imx, to avoid conflict, Tom
would you directly pick up if no issues?

Peng Fan (12):
  configs: imx8mm_evk: drop unused SDHC macro
  configs: imx8mp_evk: drop unused SDHC macro
  configs: imx8mn_evk: drop unused SDHC macro
  configs: mx6sxsabresd: drop CONFIG_SYS_FSL_USDHC_NUM
  configs: mx7dsabresd: drop unused SDHC macro
  configs: imx8qm/qxp_evk: drop unused SDHC macro
  configs: verdin-imx8m: drop unused SDHC macro
  configs: imx8mm/n_venice: drop unused SDHC macro
  configs: phycore_imx8mm/p: drop unused SDHC macro
  configs: drop CONFIG_MMCROOT
  scripts: config_whitelist: drop CONFIG_MMCROOT
  configs: imx: drop IMX_FEC_BASE

 include/configs/apalis-imx8x.h           |  1 -
 include/configs/aristainetos2.h          |  4 +---
 include/configs/capricorn-common.h       |  1 -
 include/configs/cgtqmx8.h                |  3 +--
 include/configs/cl-som-imx7.h            |  1 -
 include/configs/cm_fx6.h                 |  1 -
 include/configs/colibri-imx6ull.h        |  1 -
 include/configs/dh_imx6.h                |  1 -
 include/configs/imx7-cm.h                |  3 +--
 include/configs/imx8mm-cl-iot-gate.h     |  3 +--
 include/configs/imx8mm_evk.h             |  8 +-------
 include/configs/imx8mm_venice.h          |  4 ----
 include/configs/imx8mn_evk.h             |  8 +-------
 include/configs/imx8mn_venice.h          |  3 ---
 include/configs/imx8mp_evk.h             |  6 +-----
 include/configs/imx8mp_rsb3720.h         |  3 +--
 include/configs/imx8mq_cm.h              |  3 +--
 include/configs/imx8mq_evk.h             |  3 +--
 include/configs/imx8mq_phanbell.h        |  3 +--
 include/configs/imx8qm_mek.h             |  8 +-------
 include/configs/imx8qm_rom7720.h         |  3 +--
 include/configs/imx8qxp_mek.h            |  8 +-------
 include/configs/imx8ulp_evk.h            |  3 +--
 include/configs/liteboard.h              |  4 +---
 include/configs/m53menlo.h               |  1 -
 include/configs/mccmon6.h                |  1 -
 include/configs/mx6sllevk.h              |  3 +--
 include/configs/mx6sxsabresd.h           |  3 ---
 include/configs/mx6ul_14x14_evk.h        |  5 +----
 include/configs/mx6ullevk.h              |  3 +--
 include/configs/mx7dsabresd.h            |  9 ---------
 include/configs/mx7ulp_com.h             | 13 +++++++++++--
 include/configs/mx7ulp_evk.h             |  3 +--
 include/configs/npi_imx6ull.h            |  1 -
 include/configs/phycore_imx8mm.h         |  5 -----
 include/configs/phycore_imx8mp.h         |  5 -----
 include/configs/pico-imx6.h              |  1 -
 include/configs/pico-imx6ul.h            |  1 -
 include/configs/pico-imx8mq.h            |  3 +--
 include/configs/somlabs_visionsom_6ull.h |  1 -
 include/configs/tqma6.h                  |  1 -
 include/configs/verdin-imx8mm.h          |  3 ---
 include/configs/verdin-imx8mp.h          |  4 ----
 include/configs/vf610twr.h               |  1 -
 include/configs/vining_2000.h            |  1 -
 include/configs/xpress.h                 |  4 +---
 scripts/config_whitelist.txt             |  1 -
 47 files changed, 33 insertions(+), 126 deletions(-)

-- 
2.35.1


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

end of thread, other threads:[~2022-04-22  8:50 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-15  4:23 [PATCH V2 00/12] configs: clean up SDHC marco and MMCROOT Peng Fan (OSS)
2022-04-15  4:23 ` [PATCH V2 01/12] configs: imx8mm_evk: drop unused SDHC macro Peng Fan (OSS)
2022-04-22  8:47   ` sbabic
2022-04-15  4:23 ` [PATCH V2 02/12] configs: imx8mp_evk: " Peng Fan (OSS)
2022-04-22  8:46   ` sbabic
2022-04-15  4:23 ` [PATCH V2 03/12] configs: imx8mn_evk: " Peng Fan (OSS)
2022-04-22  8:46   ` sbabic
2022-04-15  4:23 ` [PATCH V2 04/12] configs: mx6sxsabresd: drop CONFIG_SYS_FSL_USDHC_NUM Peng Fan (OSS)
2022-04-22  8:46   ` sbabic
2022-04-15  4:23 ` [PATCH V2 05/12] configs: mx7dsabresd: drop unused SDHC macro Peng Fan (OSS)
2022-04-22  8:46   ` sbabic
2022-04-15  4:23 ` [PATCH V2 06/12] configs: imx8qm/qxp_evk: " Peng Fan (OSS)
2022-04-22  8:47   ` sbabic
2022-04-15  4:23 ` [PATCH V2 07/12] configs: verdin-imx8m: " Peng Fan (OSS)
2022-04-22  8:47   ` sbabic
2022-04-15  4:23 ` [PATCH V2 08/12] configs: imx8mm/n_venice: " Peng Fan (OSS)
2022-04-22  8:47   ` sbabic
2022-04-15  4:23 ` [PATCH V2 09/12] configs: phycore_imx8mm/p: " Peng Fan (OSS)
2022-04-22  8:47   ` sbabic
2022-04-15  4:23 ` [PATCH V2 10/12] configs: drop CONFIG_MMCROOT Peng Fan (OSS)
2022-04-21 13:16   ` Stefano Babic
2022-04-21 13:19     ` Stefano Babic
2022-04-22  8:47   ` sbabic
2022-04-15  4:23 ` [PATCH V2 11/12] scripts: config_whitelist: " Peng Fan (OSS)
2022-04-22  8:47   ` sbabic
2022-04-15  4:23 ` [PATCH V2 12/12] configs: imx: drop IMX_FEC_BASE Peng Fan (OSS)
2022-04-22  8:47   ` sbabic

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.