diff options
author | Ben Dooks <ben-linux@fluff.org> | 2005-08-09 10:04:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-08 19:28:20 -0400 |
commit | ba44e7c407e248ed85d4f510728d0284373cf678 (patch) | |
tree | 042e9ccdbc0448d6d01262d92bc32ebcc4fc737f /drivers/usb/host/ohci-s3c2410.c | |
parent | bf193d3cd2a3b73f2df74f57106114867946c09c (diff) |
[PATCH] USB: S3C24XX port numbering fix
Fix the port numbering confusion for the S3C24XX platform device
information as reported by Rudy <rudyboy168@gmail.com>
This patch ensurs that the the ports are numbered 0 and 1.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/ohci-s3c2410.c')
-rw-r--r-- | drivers/usb/host/ohci-s3c2410.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-s3c2410.c b/drivers/usb/host/ohci-s3c2410.c index e9401662503c..3d9bcf78a9a4 100644 --- a/drivers/usb/host/ohci-s3c2410.c +++ b/drivers/usb/host/ohci-s3c2410.c | |||
@@ -129,7 +129,7 @@ static void s3c2410_usb_set_power(struct s3c2410_hcd_info *info, | |||
129 | 129 | ||
130 | if (info->power_control != NULL) { | 130 | if (info->power_control != NULL) { |
131 | info->port[port-1].power = to; | 131 | info->port[port-1].power = to; |
132 | (info->power_control)(port, to); | 132 | (info->power_control)(port-1, to); |
133 | } | 133 | } |
134 | } | 134 | } |
135 | 135 | ||
@@ -339,8 +339,8 @@ int usb_hcd_s3c2410_probe (const struct hc_driver *driver, | |||
339 | struct usb_hcd *hcd = NULL; | 339 | struct usb_hcd *hcd = NULL; |
340 | int retval; | 340 | int retval; |
341 | 341 | ||
342 | s3c2410_usb_set_power(dev->dev.platform_data, 0, 1); | ||
343 | s3c2410_usb_set_power(dev->dev.platform_data, 1, 1); | 342 | s3c2410_usb_set_power(dev->dev.platform_data, 1, 1); |
343 | s3c2410_usb_set_power(dev->dev.platform_data, 2, 1); | ||
344 | 344 | ||
345 | hcd = usb_create_hcd(driver, &dev->dev, "s3c24xx"); | 345 | hcd = usb_create_hcd(driver, &dev->dev, "s3c24xx"); |
346 | if (hcd == NULL) | 346 | if (hcd == NULL) |