1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 08:31:31 +03:00

[ar71xx] rename USB variables

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13498 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2008-12-03 15:35:12 +00:00
parent b1f165083c
commit a4f34dd3db

View File

@ -27,7 +27,7 @@ static u8 ar71xx_mac_base[ETH_ALEN] __initdata;
/* /*
* OHCI (USB full speed host controller) * OHCI (USB full speed host controller)
*/ */
static struct resource ar71xx_usb_ohci_resources[] = { static struct resource ar71xx_ohci_resources[] = {
[0] = { [0] = {
.start = AR71XX_OHCI_BASE, .start = AR71XX_OHCI_BASE,
.end = AR71XX_OHCI_BASE + AR71XX_OHCI_SIZE - 1, .end = AR71XX_OHCI_BASE + AR71XX_OHCI_SIZE - 1,
@ -41,11 +41,11 @@ static struct resource ar71xx_usb_ohci_resources[] = {
}; };
static u64 ar71xx_ohci_dmamask = DMA_BIT_MASK(32); static u64 ar71xx_ohci_dmamask = DMA_BIT_MASK(32);
static struct platform_device ar71xx_usb_ohci_device = { static struct platform_device ar71xx_ohci_device = {
.name = "ar71xx-ohci", .name = "ar71xx-ohci",
.id = -1, .id = -1,
.resource = ar71xx_usb_ohci_resources, .resource = ar71xx_ohci_resources,
.num_resources = ARRAY_SIZE(ar71xx_usb_ohci_resources), .num_resources = ARRAY_SIZE(ar71xx_ohci_resources),
.dev = { .dev = {
.dma_mask = &ar71xx_ohci_dmamask, .dma_mask = &ar71xx_ohci_dmamask,
.coherent_dma_mask = DMA_BIT_MASK(32), .coherent_dma_mask = DMA_BIT_MASK(32),
@ -55,7 +55,7 @@ static struct platform_device ar71xx_usb_ohci_device = {
/* /*
* EHCI (USB full speed host controller) * EHCI (USB full speed host controller)
*/ */
static struct resource ar71xx_usb_ehci_resources[] = { static struct resource ar71xx_ehci_resources[] = {
[0] = { [0] = {
.start = AR71XX_EHCI_BASE, .start = AR71XX_EHCI_BASE,
.end = AR71XX_EHCI_BASE + AR71XX_EHCI_SIZE - 1, .end = AR71XX_EHCI_BASE + AR71XX_EHCI_SIZE - 1,
@ -69,11 +69,11 @@ static struct resource ar71xx_usb_ehci_resources[] = {
}; };
static u64 ar71xx_ehci_dmamask = DMA_BIT_MASK(32); static u64 ar71xx_ehci_dmamask = DMA_BIT_MASK(32);
static struct platform_device ar71xx_usb_ehci_device = { static struct platform_device ar71xx_ehci_device = {
.name = "ar71xx-ehci", .name = "ar71xx-ehci",
.id = -1, .id = -1,
.resource = ar71xx_usb_ehci_resources, .resource = ar71xx_ehci_resources,
.num_resources = ARRAY_SIZE(ar71xx_usb_ehci_resources), .num_resources = ARRAY_SIZE(ar71xx_ehci_resources),
.dev = { .dev = {
.dma_mask = &ar71xx_ehci_dmamask, .dma_mask = &ar71xx_ehci_dmamask,
.coherent_dma_mask = DMA_BIT_MASK(32), .coherent_dma_mask = DMA_BIT_MASK(32),
@ -98,8 +98,8 @@ void __init ar71xx_add_device_usb(void)
mdelay(900); mdelay(900);
platform_device_register(&ar71xx_usb_ohci_device); platform_device_register(&ar71xx_ohci_device);
platform_device_register(&ar71xx_usb_ehci_device); platform_device_register(&ar71xx_ehci_device);
} }
#ifdef CONFIG_AR71XX_EARLY_SERIAL #ifdef CONFIG_AR71XX_EARLY_SERIAL