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 <[email protected]> --- (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

