diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-04-18 15:43:07 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2013-04-19 20:21:56 +0200 |
commit | be7fbe6a8b4dd5b75db5a600bcd8de87f4761d85 (patch) | |
tree | c2201883f0d796a646e7654ae51d6893df5bdc77 /drivers/i2c | |
parent | c4df5000413a667fb8c67dd5589d964cc5730d91 (diff) | |
download | linux-be7fbe6a8b4dd5b75db5a600bcd8de87f4761d85.tar.bz2 |
i2c: designware-plat: drop superfluous {get|put}_device
Driver core already takes care of refcounting, no need to do this on
driver level again.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Tested-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-designware-platdrv.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/i2c/busses/i2c-designware-platdrv.c b/drivers/i2c/busses/i2c-designware-platdrv.c index dec939aca588..f7549b612ca5 100644 --- a/drivers/i2c/busses/i2c-designware-platdrv.c +++ b/drivers/i2c/busses/i2c-designware-platdrv.c @@ -170,9 +170,6 @@ static int dw_i2c_probe(struct platform_device *pdev) of_i2c_register_devices(adap); acpi_i2c_register_devices(adap); - /* Increase reference counter */ - get_device(&pdev->dev); - pm_runtime_set_autosuspend_delay(&pdev->dev, 1000); pm_runtime_use_autosuspend(&pdev->dev); pm_runtime_set_active(&pdev->dev); @@ -188,7 +185,6 @@ static int dw_i2c_remove(struct platform_device *pdev) pm_runtime_get_sync(&pdev->dev); i2c_del_adapter(&dev->adapter); - put_device(&pdev->dev); i2c_dw_disable(dev); |