diff options
author | Bryan Wu <cooloney@kernel.org> | 2008-10-08 01:39:40 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-10-08 01:39:40 -0400 |
commit | 50041acbe4122817fed9d76a846e78ba6f06c0b5 (patch) | |
tree | 653d76726ad4dfe7166660257a016b4a39d0771a /arch/blackfin/mach-bf548/boards/ezkit.c | |
parent | 3fa8749e584b55f1180411ab1b51117190bac1e5 (diff) |
Blackfin arch: use new platform data interface of musb to replace old one
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf548/boards/ezkit.c')
-rw-r--r-- | arch/blackfin/mach-bf548/boards/ezkit.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/arch/blackfin/mach-bf548/boards/ezkit.c b/arch/blackfin/mach-bf548/boards/ezkit.c index 39357693046d..d22515d080a0 100644 --- a/arch/blackfin/mach-bf548/boards/ezkit.c +++ b/arch/blackfin/mach-bf548/boards/ezkit.c | |||
@@ -38,9 +38,7 @@ | |||
38 | #include <linux/irq.h> | 38 | #include <linux/irq.h> |
39 | #include <linux/i2c.h> | 39 | #include <linux/i2c.h> |
40 | #include <linux/interrupt.h> | 40 | #include <linux/interrupt.h> |
41 | #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE) | ||
42 | #include <linux/usb/musb.h> | 41 | #include <linux/usb/musb.h> |
43 | #endif | ||
44 | #include <asm/bfin5xx_spi.h> | 42 | #include <asm/bfin5xx_spi.h> |
45 | #include <asm/cplb.h> | 43 | #include <asm/cplb.h> |
46 | #include <asm/dma.h> | 44 | #include <asm/dma.h> |
@@ -314,6 +312,16 @@ static struct resource musb_resources[] = { | |||
314 | }, | 312 | }, |
315 | }; | 313 | }; |
316 | 314 | ||
315 | static struct musb_hdrc_config musb_config = { | ||
316 | .multipoint = 0, | ||
317 | .dyn_fifo = 0, | ||
318 | .soft_con = 1, | ||
319 | .dma = 1, | ||
320 | .num_eps = 7, | ||
321 | .dma_channels = 7, | ||
322 | .gpio_vrsel = GPIO_PE7, | ||
323 | }; | ||
324 | |||
317 | static struct musb_hdrc_platform_data musb_plat = { | 325 | static struct musb_hdrc_platform_data musb_plat = { |
318 | #if defined(CONFIG_USB_MUSB_OTG) | 326 | #if defined(CONFIG_USB_MUSB_OTG) |
319 | .mode = MUSB_OTG, | 327 | .mode = MUSB_OTG, |
@@ -322,7 +330,7 @@ static struct musb_hdrc_platform_data musb_plat = { | |||
322 | #elif defined(CONFIG_USB_GADGET_MUSB_HDRC) | 330 | #elif defined(CONFIG_USB_GADGET_MUSB_HDRC) |
323 | .mode = MUSB_PERIPHERAL, | 331 | .mode = MUSB_PERIPHERAL, |
324 | #endif | 332 | #endif |
325 | .multipoint = 0, | 333 | .config = &musb_config, |
326 | }; | 334 | }; |
327 | 335 | ||
328 | static u64 musb_dmamask = ~(u32)0; | 336 | static u64 musb_dmamask = ~(u32)0; |