u-boot/drivers/phy/marvell
Marek Behún 3058e283b8 fdt_support: Add fdt_for_each_node_by_compatible() helper macro
Add macro fdt_for_each_node_by_compatible() to allow iterating over
fdt nodes by compatible string.

Convert various usages of
    off = fdt_node_offset_by_compatible(fdt, start, compat);
    while (off > 0) {
        code();
        off = fdt_node_offset_by_compatible(fdt, off, compat);
    }
and similar, to
    fdt_for_each_node_by_compatible(off, fdt, start, compat)
        code();

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
2022-01-20 11:35:29 +01:00
..
comphy_a3700.c fdt_support: Add fdt_for_each_node_by_compatible() helper macro 2022-01-20 11:35:29 +01:00
comphy_a3700.h phy: marvell: a3700: Set TXDCLK_2X_SEL bit during PCIe initialization 2021-10-08 08:33:52 +02:00
comphy_core.c phy: marvell: a3700: Convert to official DT bindings in COMPHY driver 2021-12-19 09:50:47 +01:00
comphy_core.h phy: marvell: a3700: Convert to official DT bindings in COMPHY driver 2021-12-19 09:50:47 +01:00
comphy_cp110.c phy: marvell: a3700: Convert to official DT bindings in COMPHY driver 2021-12-19 09:50:47 +01:00
comphy_mux.c phy: marvell: cp110: clean up driver after it was moved to atf 2021-04-29 07:45:24 +02:00
Kconfig Kconfig: Remove all default n/no options 2021-08-31 17:47:49 -04:00
Makefile SPDX: Convert all of our single license tags to Linux Kernel style 2018-05-07 09:34:12 -04:00
sata.h SPDX: Convert all of our single license tags to Linux Kernel style 2018-05-07 09:34:12 -04:00
utmi_phy.h WS cleanup: remove trailing empty lines 2021-09-30 08:08:56 -04:00