diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-05-12 13:19:48 (GMT) |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2013-05-18 09:55:32 (GMT) |
commit | 00d083f928a37199e0fac984845bfd8b3587238e (patch) | |
tree | da65588c4dc0b06559bfed51f6adf0c300c71c1a /drivers/i2c/busses/i2c-s3c2410.c | |
parent | 849d34571fee01dc45dd4dc9cd13d748c86762df (diff) | |
download | linux-fsl-qoriq-00d083f928a37199e0fac984845bfd8b3587238e.tar.xz |
drivers/i2c/busses: 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>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Barry Song <Baohua.Song@csr.com>
Diffstat (limited to 'drivers/i2c/busses/i2c-s3c2410.c')
-rw-r--r-- | drivers/i2c/busses/i2c-s3c2410.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 6e8ee92..cab1c91 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -1082,11 +1082,6 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev) /* map the registers */ res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - if (res == NULL) { - dev_err(&pdev->dev, "cannot find IO resource\n"); - return -ENOENT; - } - i2c->regs = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(i2c->regs)) |