Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 8b5c2b45b8f0a ("phy: rockchip: set pulldown for strobe line in dts")
commit a8cef928276bb ("phy: rockchip-emmc: output tap delay dt property")

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

authored by

Chris Ruehl and committed by
Vinod Koul
c1883654 88d9f40c

+2 -2
+2 -2
drivers/phy/rockchip/phy-rockchip-emmc.c
··· 382 382 if (!of_property_read_u32(dev->of_node, "drive-impedance-ohm", &val)) 383 383 rk_phy->drive_impedance = convert_drive_impedance_ohm(pdev, val); 384 384 385 - if (of_property_read_bool(dev->of_node, "enable-strobe-pulldown")) 385 + if (of_property_read_bool(dev->of_node, "rockchip,enable-strobe-pulldown")) 386 386 rk_phy->enable_strobe_pulldown = PHYCTRL_REN_STRB_ENABLE; 387 387 388 - if (!of_property_read_u32(dev->of_node, "output-tapdelay-select", &val)) { 388 + if (!of_property_read_u32(dev->of_node, "rockchip,output-tapdelay-select", &val)) { 389 389 if (val <= PHYCTRL_OTAPDLYSEL_MAXVALUE) 390 390 rk_phy->output_tapdelay_select = val; 391 391 else