diff options
author | Axel Lin <axel.lin@gmail.com> | 2010-10-15 01:29:24 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-22 13:22:15 -0400 |
commit | 39eb234874af4322f85e2a29e3aad33ce68cbed5 (patch) | |
tree | 2674f67d088a343d61037abb8275aaefa7707958 /drivers/usb | |
parent | 4e5c353b3ccc4cc856d75ac751f4c09e0275c08b (diff) |
USB: ohci-sh - use resource_size instead of defining its own resource_len macro
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/ohci-sh.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-sh.c b/drivers/usb/host/ohci-sh.c index 60f03cc7ec4f..0b35d22cc70e 100644 --- a/drivers/usb/host/ohci-sh.c +++ b/drivers/usb/host/ohci-sh.c | |||
@@ -77,7 +77,6 @@ static const struct hc_driver ohci_sh_hc_driver = { | |||
77 | 77 | ||
78 | /*-------------------------------------------------------------------------*/ | 78 | /*-------------------------------------------------------------------------*/ |
79 | 79 | ||
80 | #define resource_len(r) (((r)->end - (r)->start) + 1) | ||
81 | static int ohci_hcd_sh_probe(struct platform_device *pdev) | 80 | static int ohci_hcd_sh_probe(struct platform_device *pdev) |
82 | { | 81 | { |
83 | struct resource *res = NULL; | 82 | struct resource *res = NULL; |
@@ -109,7 +108,7 @@ static int ohci_hcd_sh_probe(struct platform_device *pdev) | |||
109 | 108 | ||
110 | hcd->regs = (void __iomem *)res->start; | 109 | hcd->regs = (void __iomem *)res->start; |
111 | hcd->rsrc_start = res->start; | 110 | hcd->rsrc_start = res->start; |
112 | hcd->rsrc_len = resource_len(res); | 111 | hcd->rsrc_len = resource_size(res); |
113 | ret = usb_add_hcd(hcd, irq, IRQF_DISABLED); | 112 | ret = usb_add_hcd(hcd, irq, IRQF_DISABLED); |
114 | if (ret != 0) { | 113 | if (ret != 0) { |
115 | err("Failed to add hcd"); | 114 | err("Failed to add hcd"); |