[Blackfin] arch: Fix if/def BUG - and define is multipoint NO

Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
This commit is contained in:
Bryan Wu 2007-12-24 12:20:19 +08:00
parent 0e85e3020e
commit 2935077e06
1 changed files with 4 additions and 4 deletions

View File

@ -226,14 +226,14 @@ static struct resource musb_resources[] = {
}; };
static struct musb_hdrc_platform_data musb_plat = { static struct musb_hdrc_platform_data musb_plat = {
#ifdef CONFIG_USB_MUSB_OTG #if defined(CONFIG_USB_MUSB_OTG)
.mode = MUSB_OTG, .mode = MUSB_OTG,
#elif CONFIG_USB_MUSB_HDRC_HCD #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
.mode = MUSB_HOST, .mode = MUSB_HOST,
#elif CONFIG_USB_GADGET_MUSB_HDRC #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
.mode = MUSB_PERIPHERAL, .mode = MUSB_PERIPHERAL,
#endif #endif
.multipoint = 1, .multipoint = 0,
}; };
static u64 musb_dmamask = ~(u32)0; static u64 musb_dmamask = ~(u32)0;