diff options
author | Geliang Tang <geliangtang@163.com> | 2016-01-08 21:05:39 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2016-01-08 21:05:39 +0300 |
commit | f3d2f1655b543e2e8aaeaac0e1f6250c09fe1692 (patch) | |
tree | 473fb316779ab5dca43a40ce806b13bd27dad02b /drivers/pci/hotplug/shpchp_sysfs.c | |
parent | ff3ce480e8b59fbc0f459476fe1b5451464592a5 (diff) | |
download | linux-f3d2f1655b543e2e8aaeaac0e1f6250c09fe1692.tar.xz |
PCI: Use to_pci_dev() instead of open-coding it
Use to_pci_dev() instead of open-coding it.
Signed-off-by: Geliang Tang <geliangtang@163.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/hotplug/shpchp_sysfs.c')
-rw-r--r-- | drivers/pci/hotplug/shpchp_sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/shpchp_sysfs.c b/drivers/pci/hotplug/shpchp_sysfs.c index 1b4d73d8c728..7efb56a28c9f 100644 --- a/drivers/pci/hotplug/shpchp_sysfs.c +++ b/drivers/pci/hotplug/shpchp_sysfs.c @@ -43,7 +43,7 @@ static ssize_t show_ctrl(struct device *dev, struct device_attribute *attr, char struct resource *res; struct pci_bus *bus; - pdev = container_of(dev, struct pci_dev, dev); + pdev = to_pci_dev(dev); bus = pdev->subordinate; out += sprintf(buf, "Free resources: memory\n"); |