summaryrefslogtreecommitdiffstats
path: root/drivers/usb/phy/phy-samsung-usb3.c
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2013-05-12 15:19:53 +0200
committerWolfram Sang <wsa@the-dreams.de>2013-05-18 11:58:00 +0200
commit9c5fdd38276973c8c65394220e5e740be561cf92 (patch)
tree2b4e186aa912e1a637831ebac747743c8d980567 /drivers/usb/phy/phy-samsung-usb3.c
parentdrivers/usb/host: don't check resource with devm_ioremap_resource (diff)
downloadlinux-9c5fdd38276973c8c65394220e5e740be561cf92.tar.xz
linux-9c5fdd38276973c8c65394220e5e740be561cf92.zip
drivers/usb/phy: don't check resource with devm_ioremap_resource
devm_ioremap_resource does sanity checks on the given resource. No need to duplicate this in the driver. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to '')
-rw-r--r--drivers/usb/phy/phy-samsung-usb3.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/usb/phy/phy-samsung-usb3.c b/drivers/usb/phy/phy-samsung-usb3.c
index 133f3d0c554f..5a9efcbcb532 100644
--- a/drivers/usb/phy/phy-samsung-usb3.c
+++ b/drivers/usb/phy/phy-samsung-usb3.c
@@ -239,11 +239,6 @@ static int samsung_usb3phy_probe(struct platform_device *pdev)
int ret;
phy_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!phy_mem) {
- dev_err(dev, "%s: missing mem resource\n", __func__);
- return -ENODEV;
- }
-
phy_base = devm_ioremap_resource(dev, phy_mem);
if (IS_ERR(phy_base))
return PTR_ERR(phy_base);