aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/uhci-platform.c
diff options
context:
space:
mode:
authorHimangi Saraogi <himangi774@gmail.com>2014-06-11 15:18:44 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-09 19:31:48 -0400
commit96ae571338a4b2ecd2e42a6881bb0daa1a4e7d4f (patch)
tree7ad28eb711a37b05fcf2fafbf89a91ae56cd27a4 /drivers/usb/host/uhci-platform.c
parent3e346d41bfcdf803284b06ef6e4bf13fa2b86277 (diff)
uhci-platform: use devm_ioremap resource
This patch replaces the memory allocation using request_mem_region and the ioremap by a single call to managed interface devm_ioremap_reource. The corresponding calls to release_mem_region and iounmap in the probe and release functions are now unnecessary and are removed. Also a label is done away with and linux/device.h is added to make sure the devm_*() outine declarations are unambiguously available. Signed-off-by: Himangi Saraogi <himangi774@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/uhci-platform.c')
-rw-r--r--drivers/usb/host/uhci-platform.c22
1 files changed, 5 insertions, 17 deletions
diff --git a/drivers/usb/host/uhci-platform.c b/drivers/usb/host/uhci-platform.c
index 01833ab2b5c3..b987f1d10058 100644
--- a/drivers/usb/host/uhci-platform.c
+++ b/drivers/usb/host/uhci-platform.c
@@ -8,6 +8,7 @@
8 */ 8 */
9 9
10#include <linux/of.h> 10#include <linux/of.h>
11#include <linux/device.h>
11#include <linux/platform_device.h> 12#include <linux/platform_device.h>
12 13
13static int uhci_platform_init(struct usb_hcd *hcd) 14static int uhci_platform_init(struct usb_hcd *hcd)
@@ -88,33 +89,22 @@ static int uhci_hcd_platform_probe(struct platform_device *pdev)
88 hcd->rsrc_start = res->start; 89 hcd->rsrc_start = res->start;
89 hcd->rsrc_len = resource_size(res); 90 hcd->rsrc_len = resource_size(res);
90 91
91 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { 92 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
92 pr_err("%s: request_mem_region failed\n", __func__); 93 if (IS_ERR(hcd->regs)) {
93 ret = -EBUSY; 94 ret = PTR_ERR(hcd->regs);
94 goto err_rmr; 95 goto err_rmr;
95 } 96 }
96
97 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
98 if (!hcd->regs) {
99 pr_err("%s: ioremap failed\n", __func__);
100 ret = -ENOMEM;
101 goto err_irq;
102 }
103 uhci = hcd_to_uhci(hcd); 97 uhci = hcd_to_uhci(hcd);
104 98
105 uhci->regs = hcd->regs; 99 uhci->regs = hcd->regs;
106 100
107 ret = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_SHARED); 101 ret = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_SHARED);
108 if (ret) 102 if (ret)
109 goto err_uhci; 103 goto err_rmr;
110 104
111 device_wakeup_enable(hcd->self.controller); 105 device_wakeup_enable(hcd->self.controller);
112 return 0; 106 return 0;
113 107
114err_uhci:
115 iounmap(hcd->regs);
116err_irq:
117 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
118err_rmr: 108err_rmr:
119 usb_put_hcd(hcd); 109 usb_put_hcd(hcd);
120 110
@@ -126,8 +116,6 @@ static int uhci_hcd_platform_remove(struct platform_device *pdev)
126 struct usb_hcd *hcd = platform_get_drvdata(pdev); 116 struct usb_hcd *hcd = platform_get_drvdata(pdev);
127 117
128 usb_remove_hcd(hcd); 118 usb_remove_hcd(hcd);
129 iounmap(hcd->regs);
130 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
131 usb_put_hcd(hcd); 119 usb_put_hcd(hcd);
132 120
133 return 0; 121 return 0;