diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-08-12 11:12:38 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-08-12 11:12:38 +0000 |
commit | e35e421a546deefeb1414ce1a44535e7240ba136 (patch) | |
tree | d0ee009108369c3ecffd8a41d59df2cd61c9b391 /target/linux | |
parent | 15b1f08d905ee3b29a0339a3ce6fb3552dabb2f0 (diff) | |
download | upstream-e35e421a546deefeb1414ce1a44535e7240ba136.tar.gz upstream-e35e421a546deefeb1414ce1a44535e7240ba136.tar.bz2 upstream-e35e421a546deefeb1414ce1a44535e7240ba136.zip |
Fix typo (#2210)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8402 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/adm5120-2.6/files/drivers/usb/host/adm5120-hcd.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/target/linux/adm5120-2.6/files/drivers/usb/host/adm5120-hcd.c b/target/linux/adm5120-2.6/files/drivers/usb/host/adm5120-hcd.c index 7a7076357c..4e88777287 100644 --- a/target/linux/adm5120-2.6/files/drivers/usb/host/adm5120-hcd.c +++ b/target/linux/adm5120-2.6/files/drivers/usb/host/adm5120-hcd.c @@ -89,7 +89,7 @@ MODULE_AUTHOR("Jeroen Vreeken (pe1rxq@amsat.org)"); #define ADMHCD_REG_PORTSTATUS1 0x7c #define ADMHCD_REG_HOSTHEAD 0x80 -#define ADMHCD_NUMPORTS 2 +#define ADMHCD_NUMPORTS 1 #define ADMHCD_DESC_ALIGN 16 struct admhcd_ed { @@ -703,8 +703,6 @@ static int admhcd_start(struct usb_hcd *hcd) struct admhcd *ahcd = hcd_to_admhcd(hcd); unsigned long flags; - printk(KERN_DEBUG PFX "calling admhcd_start\n"); - spin_lock_irqsave(&ahcd->lock, flags); /* Initialise the HCD registers */ @@ -718,7 +716,7 @@ static int admhcd_start(struct usb_hcd *hcd) mdelay(1); } - hcd->uses_new_polling = 1; + //hcd->uses_new_polling = 1; /* Enable USB host mode */ admhcd_reg_set(ahcd, ADMHCD_REG_CONTROL, ADMHCD_HOST_EN); @@ -744,7 +742,6 @@ static int admhcd_start(struct usb_hcd *hcd) spin_unlock_irqrestore(&ahcd->lock, flags); - printk(KERN_DEBUG PFX "returning 0 from admhcd_start\n"); return 0; } @@ -927,7 +924,7 @@ out: #ifdef CONFIG_PM static int adm5120hcd_suspend(struct platform_device *pdev, pm_message_t state) { - pdev-dev.power.power_state = state; + pdev->dev.power.power_state = state; mdelay(1); return 0; } |