From 82759a171607a8bc277a82e9a5b36dd40e9b554c Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Sun, 12 Aug 2012 12:48:31 +0000 Subject: [PATCH] ramips: rename rt3352 usb platform devices In order to get OHCI/EHCI working on the Rt3352, the platform device must be named so rt3883-?hci will recognize it. Signed-off-by: Daniel Golle SVN-Revision: 33145 --- target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c index bebab8171a..2e884c39e2 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c @@ -352,7 +352,7 @@ static struct resource rt3352_ehci_resources[] = { static u64 rt3352_ehci_dmamask = DMA_BIT_MASK(32); static struct platform_device rt3352_ehci_device = { - .name = "rt3352-ehci", + .name = "rt3883-ehci", .id = -1, .resource = rt3352_ehci_resources, .num_resources = ARRAY_SIZE(rt3352_ehci_resources), @@ -382,7 +382,7 @@ static struct rt3883_ohci_platform_data rt3352_ohci_data = { static u64 rt3352_ohci_dmamask = DMA_BIT_MASK(32); static struct platform_device rt3352_ohci_device = { - .name = "rt3352-ohci", + .name = "rt3883-ohci", .id = -1, .resource = rt3352_ohci_resources, .num_resources = ARRAY_SIZE(rt3352_ohci_resources),