diff options
| author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-03-04 03:35:43 -0500 |
|---|---|---|
| committer | Felipe Balbi <balbi@ti.com> | 2013-03-04 06:08:53 -0500 |
| commit | 57ae575b8a51fd98c9b0066c6c030d5ccce3d77d (patch) | |
| tree | d6bec6722c110f73bbccd6113d7e87527f09c273 | |
| parent | 862421da0d82a3c35aa89e040a533f76d24c62c4 (diff) | |
usb: phy: omap-control-usb: Convert to devm_ioremap_resource()
Use the newly introduced devm_ioremap_resource() instead of
devm_request_and_ioremap() which provides more consistent error handling.
devm_ioremap_resource() provides its own error messages; so all explicit
error messages can be removed from the failure code paths.
Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
| -rw-r--r-- | drivers/usb/phy/omap-control-usb.c | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/drivers/usb/phy/omap-control-usb.c b/drivers/usb/phy/omap-control-usb.c index 5323b71c3521..1419ceda9759 100644 --- a/drivers/usb/phy/omap-control-usb.c +++ b/drivers/usb/phy/omap-control-usb.c | |||
| @@ -219,32 +219,26 @@ static int omap_control_usb_probe(struct platform_device *pdev) | |||
| 219 | 219 | ||
| 220 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, | 220 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, |
| 221 | "control_dev_conf"); | 221 | "control_dev_conf"); |
| 222 | control_usb->dev_conf = devm_request_and_ioremap(&pdev->dev, res); | 222 | control_usb->dev_conf = devm_ioremap_resource(&pdev->dev, res); |
| 223 | if (!control_usb->dev_conf) { | 223 | if (IS_ERR(control_usb->dev_conf)) |
| 224 | dev_err(&pdev->dev, "Failed to obtain io memory\n"); | 224 | return PTR_ERR(control_usb->dev_conf); |
| 225 | return -EADDRNOTAVAIL; | ||
| 226 | } | ||
| 227 | 225 | ||
| 228 | if (control_usb->type == OMAP_CTRL_DEV_TYPE1) { | 226 | if (control_usb->type == OMAP_CTRL_DEV_TYPE1) { |
| 229 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, | 227 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, |
| 230 | "otghs_control"); | 228 | "otghs_control"); |
| 231 | control_usb->otghs_control = devm_request_and_ioremap( | 229 | control_usb->otghs_control = devm_ioremap_resource( |
| 232 | &pdev->dev, res); | 230 | &pdev->dev, res); |
| 233 | if (!control_usb->otghs_control) { | 231 | if (IS_ERR(control_usb->otghs_control)) |
| 234 | dev_err(&pdev->dev, "Failed to obtain io memory\n"); | 232 | return PTR_ERR(control_usb->otghs_control); |
| 235 | return -EADDRNOTAVAIL; | ||
| 236 | } | ||
| 237 | } | 233 | } |
| 238 | 234 | ||
| 239 | if (control_usb->type == OMAP_CTRL_DEV_TYPE2) { | 235 | if (control_usb->type == OMAP_CTRL_DEV_TYPE2) { |
| 240 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, | 236 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, |
| 241 | "phy_power_usb"); | 237 | "phy_power_usb"); |
| 242 | control_usb->phy_power = devm_request_and_ioremap( | 238 | control_usb->phy_power = devm_ioremap_resource( |
| 243 | &pdev->dev, res); | 239 | &pdev->dev, res); |
| 244 | if (!control_usb->phy_power) { | 240 | if (IS_ERR(control_usb->phy_power)) |
| 245 | dev_dbg(&pdev->dev, "Failed to obtain io memory\n"); | 241 | return PTR_ERR(control_usb->phy_power); |
| 246 | return -EADDRNOTAVAIL; | ||
| 247 | } | ||
| 248 | 242 | ||
| 249 | control_usb->sys_clk = devm_clk_get(control_usb->dev, | 243 | control_usb->sys_clk = devm_clk_get(control_usb->dev, |
| 250 | "sys_clkin"); | 244 | "sys_clkin"); |
