public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Greg Malysa <malysagreg@gmail.com>
To: u-boot@lists.denx.de
Cc: adsp-linux@analog.com, Greg Malysa <malysagreg@gmail.com>,
	Alif Zakuan Yuslaimi <alif.zakuan.yuslaimi@altera.com>,
	Arturs Artamonovs <arturs.artamonovs@analog.com>,
	Heiko Schocher <hs@nabladev.com>,
	Jerome Forissier <jerome.forissier@linaro.org>,
	"Kory Maincent (TI.com)" <kory.maincent@bootlin.com>,
	Mattijs Korpershoek <mkorpershoek@kernel.org>,
	Nathan Barrett-Morrison <nathan.morrison@timesys.com>,
	Oliver Gaskell <Oliver.Gaskell@analog.com>,
	Peng Fan <peng.fan@nxp.com>, Simon Glass <sjg@chromium.org>,
	Stefan Roese <stefan.roese@mailbox.org>,
	Sumit Garg <sumit.garg@kernel.org>, Tom Rini <trini@konsulko.com>,
	Utsav Agarwal <utsav.agarwal@analog.com>,
	Vasileios Bimpikas <vasileios.bimpikas@analog.com>,
	Yao Zi <me@ziyao.cc>
Subject: [PATCH 12/12] MAINTAINERS: Update ADI entries for new boards
Date: Thu, 11 Dec 2025 03:04:03 -0500	[thread overview]
Message-ID: <20251211080414.5363-13-malysagreg@gmail.com> (raw)
In-Reply-To: <20251211080414.5363-1-malysagreg@gmail.com>

This adds missing maintainers entries for the ADI SC5xx defconfigs and
for a device tree binding file that was previously missed.

Signed-off-by: Greg Malysa <malysagreg@gmail.com>

---

(no changes since v2)

Changes in v2:
 - Possible files relating to ADI were identified using a shell
   command like so:
   $ find ./ | xargs grep -i --color=none "Analog Devices" 2>/dev/null | awk '{ print $1 }' | tr -d ":#" | sort | uniq > maybe_adi.txt
   This file was reviewed and entries unrelated to ADI that merely
   mentioned the company name were pruned, leaving 111 files.
   Then, maintainer information was retrieved with:
   $ cat maybe_adi.txt | xargs -L1 -t ./scripts/get_maintainer.pl --separator , -f
   and each line was reviewed to ensure it matched ARM SC5XX. This
   identified one extra file that was missed previously.

 MAINTAINERS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 6ce0bbce13d..61b3d8506a1 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -637,6 +637,7 @@ F:	arch/arm/dts/sc5*
 F:	arch/arm/include/asm/arch-adi/
 F:	arch/arm/mach-sc5xx/
 F:	board/adi/
+F:	configs/sc5*
 F:	doc/device-tree-bindings/arm/adi/adi,sc5xx.yaml
 F:	doc/device-tree-bindings/clock/adi,sc5xx-clocks.yaml
 F:	doc/device-tree-bindings/pinctrl/adi,adsp-pinctrl.yaml
@@ -656,6 +657,7 @@ F:	drivers/timer/adi_sc5xx_timer.c
 F:	drivers/usb/musb-new/sc5xx.c
 F:	drivers/watchdog/adi_wdt.c
 F:	include/configs/sc5*
+F:	include/dt-bindings/clock/adi-sc5xx-clock.h
 F:	include/dt-bindings/pinctrl/adi-adsp.h
 F:	include/env/adi/
 
-- 
2.49.1


  parent reply	other threads:[~2025-12-11  8:07 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-11  8:03 [PATCH 00/12] sc5xx: Add complete board support for all ADI SC5xx boards Greg Malysa
2025-12-11  8:03 ` [PATCH 01/12] mach-sc5xx: Introduce Kconfig symbols for image addresses Greg Malysa
2025-12-11  8:03 ` [PATCH 02/12] mach-sc5xx: Rename SC_BOOT_MODE Greg Malysa
2025-12-11  8:03 ` [PATCH 03/12] mach-sc5xx: Kconfig: Make EZKIT and EZLITE carriers mutually exclusive Greg Malysa
2025-12-11  8:03 ` [PATCH 04/12] mach-sc5xx: Add preliminary support for binman Greg Malysa
2025-12-11  8:03 ` [PATCH 05/12] docker: add Analog Devices tools to docker image Greg Malysa
2025-12-11  8:03 ` [PATCH 06/12] board: adi: Add SOMCRR infrastructure Greg Malysa
2025-12-11  8:03 ` [PATCH 07/12] board: adi: Add support for SC573-ezkit Greg Malysa
2025-12-11  8:03 ` [PATCH 08/12] board: adi: Add support for SC589 boards Greg Malysa
2025-12-11  8:04 ` [PATCH 09/12] board: adi: Add support for SC584-ezkit Greg Malysa
2025-12-11  8:04 ` [PATCH 10/12] board: adi: Add support for SC598 Greg Malysa
2025-12-11  8:04 ` [PATCH 11/12] board: adi: Add support for SC594 Greg Malysa
2025-12-11  8:04 ` Greg Malysa [this message]
2026-01-23 22:33 ` [PATCH 00/12] sc5xx: Add complete board support for all ADI SC5xx boards Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2025-11-18  6:39 Greg Malysa
2025-11-18  6:39 ` [PATCH 12/12] MAINTAINERS: Update ADI entries for new boards Greg Malysa

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20251211080414.5363-13-malysagreg@gmail.com \
    --to=malysagreg@gmail.com \
    --cc=Oliver.Gaskell@analog.com \
    --cc=adsp-linux@analog.com \
    --cc=alif.zakuan.yuslaimi@altera.com \
    --cc=arturs.artamonovs@analog.com \
    --cc=hs@nabladev.com \
    --cc=jerome.forissier@linaro.org \
    --cc=kory.maincent@bootlin.com \
    --cc=me@ziyao.cc \
    --cc=mkorpershoek@kernel.org \
    --cc=nathan.morrison@timesys.com \
    --cc=peng.fan@nxp.com \
    --cc=sjg@chromium.org \
    --cc=stefan.roese@mailbox.org \
    --cc=sumit.garg@kernel.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=utsav.agarwal@analog.com \
    --cc=vasileios.bimpikas@analog.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox