@@ -47,8 +47,7 @@ usb2phy@4a0ad080 {
OMAP PIPE3 PHY
Required properties:
- - compatible: Should be "ti,omap-usb3", "ti,omap-pipe3", "ti,omap-sata"
- or "ti,omap-pcie"
+ - compatible: Should be "ti,phy-pipe3-usb3" or "ti,phy-pipe3-sata"
- reg : Address and length of the register set for the device.
- reg-names: The names of the register addresses corresponding to the registers
filled in "reg".
@@ -219,17 +219,13 @@ static struct phy_ops ops = {
#ifdef CONFIG_OF
static const struct of_device_id omap_pipe3_id_table[] = {
{
- .compatible = "ti,omap-pipe3",
+ .compatible = "ti,phy-pipe3-usb3",
.data = dpll_map_usb,
},
{
- .compatible = "ti,omap-sata",
+ .compatible = "ti,phy-pipe3-sata",
.data = dpll_map_sata,
},
- {
- .compatible = "ti,omap-usb3",
- .data = dpll_map_usb,
- },
{},
};
MODULE_DEVICE_TABLE(of, omap_pipe3_id_table);
Improve compatibility string format to "ti,phy-pipe3-<type>" where <type> can be "usb3" or "sata". Remove "pcie" type as it is not yet supported due to missing DPLL data. Signed-off-by: Roger Quadros <rogerq@ti.com> --- Documentation/devicetree/bindings/phy/omap-phy.txt | 3 +-- drivers/phy/phy-omap-pipe3.c | 8 ++------ 2 files changed, 3 insertions(+), 8 deletions(-)