Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit efea5004 authored by Saravana Kannan's avatar Saravana Kannan Committed by Suren Baghdasaryan
Browse files

ANDROID: GKI: of: property: Add device link support for phys property



This makes sure that phy consumer devices don't unnecessarily try to
probe before phys supplier devices

Bug: 153389865
Signed-off-by: default avatarSaravana Kannan <saravanak@google.com>
Change-Id: I59623500f0697d60ffd79640d6a7bd0c27787a3c
parent bf3e2f74
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -1222,6 +1222,7 @@ DEFINE_SIMPLE_PROP(interrupt_parent, "interrupt-parent", NULL)
DEFINE_SIMPLE_PROP(dmas, "dmas", "#dma-cells")
DEFINE_SIMPLE_PROP(dmas, "dmas", "#dma-cells")
DEFINE_SIMPLE_PROP(power_domains, "power-domains", "#power-domain-cells")
DEFINE_SIMPLE_PROP(power_domains, "power-domains", "#power-domain-cells")
DEFINE_SIMPLE_PROP(hwlocks, "hwlocks", "#hwlock-cells")
DEFINE_SIMPLE_PROP(hwlocks, "hwlocks", "#hwlock-cells")
DEFINE_SIMPLE_PROP(phys, "phys", "#phy-cells")
DEFINE_SIMPLE_PROP(pinctrl0, "pinctrl-0", NULL)
DEFINE_SIMPLE_PROP(pinctrl0, "pinctrl-0", NULL)
DEFINE_SIMPLE_PROP(pinctrl1, "pinctrl-1", NULL)
DEFINE_SIMPLE_PROP(pinctrl1, "pinctrl-1", NULL)
DEFINE_SIMPLE_PROP(pinctrl2, "pinctrl-2", NULL)
DEFINE_SIMPLE_PROP(pinctrl2, "pinctrl-2", NULL)
@@ -1253,6 +1254,7 @@ static const struct supplier_bindings of_supplier_bindings[] = {
	{ .parse_prop = parse_dmas, },
	{ .parse_prop = parse_dmas, },
	{ .parse_prop = parse_power_domains, },
	{ .parse_prop = parse_power_domains, },
	{ .parse_prop = parse_hwlocks, },
	{ .parse_prop = parse_hwlocks, },
	{ .parse_prop = parse_phys, },
	{ .parse_prop = parse_pinctrl0, },
	{ .parse_prop = parse_pinctrl0, },
	{ .parse_prop = parse_pinctrl1, },
	{ .parse_prop = parse_pinctrl1, },
	{ .parse_prop = parse_pinctrl2, },
	{ .parse_prop = parse_pinctrl2, },