Commit dc6b9d7f authored by Deepak Saxena's avatar Deepak Saxena

[PATCH] IXP425 -> IXP4XX conversion for USB-gadget

The 2.6 code for Intel's IXP4xx NPU line has been updated to
remove all references to IXP42x or IXP425 and replace it
with IXP4XX, including config options and file names. This
patch updates the USB-gadget pxa-udc driver with these changes.
parent 2e3ed9ac
...@@ -71,8 +71,8 @@ config USB_NET2280 ...@@ -71,8 +71,8 @@ config USB_NET2280
default USB_GADGET default USB_GADGET
config USB_GADGET_PXA2XX config USB_GADGET_PXA2XX
boolean "PXA 2xx or IXP 42x" boolean "PXA 2xx or IXP 4xx"
depends on ARCH_PXA || ARCH_IXP425 depends on ARCH_PXA || ARCH_IXP4XX
help help
Intel's PXA 2xx series XScale ARM-5TE processors include Intel's PXA 2xx series XScale ARM-5TE processors include
an integrated full speed USB 1.1 device controller. The an integrated full speed USB 1.1 device controller. The
......
...@@ -94,7 +94,7 @@ static const char ep0name [] = "ep0"; ...@@ -94,7 +94,7 @@ static const char ep0name [] = "ep0";
#define UDC_PROC_FILE #define UDC_PROC_FILE
#endif #endif
#ifdef CONFIG_ARCH_IXP425 #ifdef CONFIG_ARCH_IXP4XX
#undef USE_DMA #undef USE_DMA
/* cpu-specific register addresses are compiled in to this code */ /* cpu-specific register addresses are compiled in to this code */
...@@ -2374,8 +2374,8 @@ static struct pxa2xx_udc memory = { ...@@ -2374,8 +2374,8 @@ static struct pxa2xx_udc memory = {
#if defined(CONFIG_ARCH_PXA) #if defined(CONFIG_ARCH_PXA)
#define CP15R0_XSCALE_VALUE 0x69052000 /* intel/arm/xscale */ #define CP15R0_XSCALE_VALUE 0x69052000 /* intel/arm/xscale */
#elif defined(CONFIG_ARCH_IXP425) #elif defined(CONFIG_ARCH_IXP4XX)
#define CP15R0_XSCALE_VALUE 0x69054000 /* intel/arm/ixp425 */ #define CP15R0_XSCALE_VALUE 0x69054000 /* intel/arm/ixp4xx */
#endif #endif
...@@ -2434,7 +2434,7 @@ static int __init pxa2xx_udc_probe(struct device *_dev) ...@@ -2434,7 +2434,7 @@ static int __init pxa2xx_udc_probe(struct device *_dev)
/* fall through */ /* fall through */
case PXA250_C0: case PXA210_C0: case PXA250_C0: case PXA210_C0:
break; break;
#elif defined(CONFIG_ARCH_IXP425) #elif defined(CONFIG_ARCH_IXP4XX)
case IXP425_A0: case IXP425_A0:
out_dma = 0; out_dma = 0;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment