diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-05-02 19:59:19 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-05-02 19:59:19 +0000 |
commit | a826f98491b788b155c4d049d4d48ff5d45aa715 (patch) | |
tree | d7fa5cbeb03a3663b6bcfb6fda8d040f42a6ae5c /target/linux/ar71xx/patches-2.6.30/810-ehci-ar71xx-use-dev-name-instead-of-bus-id.patch | |
parent | e32b61303b36991ed145d68fca12947b086c0da3 (diff) |
[ar71xx] add experimental support for 2.6.30
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15561 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/patches-2.6.30/810-ehci-ar71xx-use-dev-name-instead-of-bus-id.patch')
-rw-r--r-- | target/linux/ar71xx/patches-2.6.30/810-ehci-ar71xx-use-dev-name-instead-of-bus-id.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-2.6.30/810-ehci-ar71xx-use-dev-name-instead-of-bus-id.patch b/target/linux/ar71xx/patches-2.6.30/810-ehci-ar71xx-use-dev-name-instead-of-bus-id.patch new file mode 100644 index 000000000..131029f38 --- /dev/null +++ b/target/linux/ar71xx/patches-2.6.30/810-ehci-ar71xx-use-dev-name-instead-of-bus-id.patch @@ -0,0 +1,34 @@ +--- a/drivers/usb/host/ehci-ar71xx.c ++++ b/drivers/usb/host/ehci-ar71xx.c +@@ -79,7 +79,7 @@ static int ehci_ar71xx_probe(const struc + res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); + if (!res) { + dev_dbg(&pdev->dev, "no IRQ specified for %s\n", +- pdev->dev.bus_id); ++ dev_name(&pdev->dev)); + return -ENODEV; + } + irq = res->start; +@@ -87,11 +87,11 @@ static int ehci_ar71xx_probe(const struc + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!res) { + dev_dbg(&pdev->dev, "no base address specified for %s\n", +- pdev->dev.bus_id); ++ dev_name(&pdev->dev)); + return -ENODEV; + } + +- hcd = usb_create_hcd(driver, &pdev->dev, pdev->dev.bus_id); ++ hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev)); + if (!hcd) + return -ENOMEM; + +@@ -205,7 +205,7 @@ static int ehci_ar71xx_driver_probe(stru + pdata = pdev->dev.platform_data; + if (!pdata) { + dev_err(&pdev->dev, "no platform data specified for %s\n", +- pdev->dev.bus_id); ++ dev_name(&pdev->dev)); + return -ENODEV; + } + |