Skip to content

Commit

Permalink
i2c: designware-pci: drop superfluous {get|put}_device
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Wolfram Sang committed Apr 19, 2013
1 parent be7fbe6 commit aaedeb6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions drivers/i2c/busses/i2c-designware-pcidrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,6 @@ static int i2c_dw_pci_probe(struct pci_dev *pdev,
return r;
}

/* Increase reference counter */
get_device(&pdev->dev);

pm_runtime_set_autosuspend_delay(&pdev->dev, 1000);
pm_runtime_use_autosuspend(&pdev->dev);
pm_runtime_allow(&pdev->dev);
Expand All @@ -307,7 +304,6 @@ static void i2c_dw_pci_remove(struct pci_dev *pdev)
pm_runtime_get_noresume(&pdev->dev);

i2c_del_adapter(&dev->adapter);
put_device(&pdev->dev);
}

/* work with hotplug and coldplug */
Expand Down

0 comments on commit aaedeb6

Please sign in to comment.