Commit c1883654 authored by Chris Ruehl's avatar Chris Ruehl Committed by Vinod Koul
Browse files

phy: rockchip: emmc, add vendor prefix to dts properties



Update the implementation add "rockchip," vendor prefix for the
optional dts properties. Prefix referred from vendor-prefixes.yaml.
Follow up with
commit 8b5c2b45 ("phy: rockchip: set pulldown for strobe line in dts")
commit a8cef928 ("phy: rockchip-emmc: output tap delay dt property")

Signed-off-by: default avatarChris Ruehl <chris.ruehl@gtsys.com.hk>
Link: https://lore.kernel.org/r/20201215014409.905-3-chris.ruehl@gtsys.com.hk


Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent 88d9f40c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -382,10 +382,10 @@ static int rockchip_emmc_phy_probe(struct platform_device *pdev)
	if (!of_property_read_u32(dev->of_node, "drive-impedance-ohm", &val))
		rk_phy->drive_impedance = convert_drive_impedance_ohm(pdev, val);

	if (of_property_read_bool(dev->of_node, "enable-strobe-pulldown"))
	if (of_property_read_bool(dev->of_node, "rockchip,enable-strobe-pulldown"))
		rk_phy->enable_strobe_pulldown = PHYCTRL_REN_STRB_ENABLE;

	if (!of_property_read_u32(dev->of_node, "output-tapdelay-select", &val)) {
	if (!of_property_read_u32(dev->of_node, "rockchip,output-tapdelay-select", &val)) {
		if (val <= PHYCTRL_OTAPDLYSEL_MAXVALUE)
			rk_phy->output_tapdelay_select = val;
		else