From a826f98491b788b155c4d049d4d48ff5d45aa715 Mon Sep 17 00:00:00 2001 From: juhosg Date: Sat, 2 May 2009 19:59:19 +0000 Subject: [ar71xx] add experimental support for 2.6.30 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15561 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ...hci-ar71xx-use-dev-name-instead-of-bus-id.patch | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 target/linux/ar71xx/patches-2.6.30/811-ohci-ar71xx-use-dev-name-instead-of-bus-id.patch (limited to 'target/linux/ar71xx/patches-2.6.30/811-ohci-ar71xx-use-dev-name-instead-of-bus-id.patch') diff --git a/target/linux/ar71xx/patches-2.6.30/811-ohci-ar71xx-use-dev-name-instead-of-bus-id.patch b/target/linux/ar71xx/patches-2.6.30/811-ohci-ar71xx-use-dev-name-instead-of-bus-id.patch new file mode 100644 index 000000000..4660bc155 --- /dev/null +++ b/target/linux/ar71xx/patches-2.6.30/811-ohci-ar71xx-use-dev-name-instead-of-bus-id.patch @@ -0,0 +1,25 @@ +--- a/drivers/usb/host/ohci-ar71xx.c ++++ b/drivers/usb/host/ohci-ar71xx.c +@@ -30,19 +30,19 @@ static int usb_hcd_ar71xx_probe(const st + 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; + +- 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; + + 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)); + ret = -ENODEV; + goto err_put_hcd; + } -- cgit v1.2.3