On 20/01/14 12:18, Sergei Shtylyov wrote:
Hello.

On 18-01-2014 19:03, Ben Dooks wrote:

Add support for the phy-rcar-gen2-usb driver to be probed from device
tree.

Signed-off-by: Ben Dooks <ben.do...@codethink.co.uk>
Reviewed-by: Ian Molton <ian.mol...@codethink.co.uk>
---
Cc: linux-usb@vger.kernel.org (open list:USB PHY LAYER)
Cc: linux...@vger.kernel.org (open list:ARM/SHMOBILE ARM...)
Cc: Magnus Damm <magnus.d...@gmail.com> (supporter:ARM/SHMOBILE ARM...)
Cc: Simon Horman <ho...@verge.net.au> (supporter:ARM/SHMOBILE ARM...)
Cc: devicet...@vger.kernel.org (open list:OPEN FIRMWARE AND...)
---
  drivers/usb/phy/phy-rcar-gen2-usb.c | 35
++++++++++++++++++++++++++++++-----
  1 file changed, 30 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/phy/phy-rcar-gen2-usb.c
b/drivers/usb/phy/phy-rcar-gen2-usb.c
index db3ab34..906b74b 100644
--- a/drivers/usb/phy/phy-rcar-gen2-usb.c
+++ b/drivers/usb/phy/phy-rcar-gen2-usb.c
[...]
@@ -203,16 +212,31 @@ static int rcar_gen2_usb_phy_probe(struct
platform_device *pdev)
[...]
+    if (of_id) {
+        int len = 0;
+
+        if (of_get_property(dev->of_node, "renesas,usb0-hs", &len))
+            priv->ugctrl2 = USBHS_UGCTRL2_USB0_HS;
+        else
+            priv->ugctrl2 = USBHS_UGCTRL2_USB0_PCI;
+
+        if (of_get_property(dev->of_node, "renesas,usb2-ss", &len))

    You can use of_property_read_bool() in both cases as both these
props are boolean I guess. It's more handy.

Thanks, missed that one, will sort that out.


--
Ben Dooks                               http://www.codethink.co.uk/
Senior Engineer                         Codethink - Providing Genius
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to