diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2016-06-06 09:06:07 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2016-06-21 13:30:42 -0400 |
commit | 733f3d1339f91d893584b2afcea18b34148ca125 (patch) | |
tree | 32556c7ce50f3b54a65de61b86384eadb7b0f792 | |
parent | af8c34ce6ae32addda3788d54a7e340cad22516b (diff) |
PCI: Convert Downstream Port Containment driver to use devm_* functions
Use the device resource management (devm) interfaces so we don't need to
explicitly release resources on failure paths or when the driver is
removed.
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Keith Busch <keith.busch@intel.com>
-rw-r--r-- | drivers/pci/pcie/pcie-dpc.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/drivers/pci/pcie/pcie-dpc.c b/drivers/pci/pcie/pcie-dpc.c index ab552f1bc08f..79e371d4f7e6 100644 --- a/drivers/pci/pcie/pcie-dpc.c +++ b/drivers/pci/pcie/pcie-dpc.c | |||
@@ -89,7 +89,7 @@ static int dpc_probe(struct pcie_device *dev) | |||
89 | int status; | 89 | int status; |
90 | u16 ctl, cap; | 90 | u16 ctl, cap; |
91 | 91 | ||
92 | dpc = kzalloc(sizeof(*dpc), GFP_KERNEL); | 92 | dpc = devm_kzalloc(&dev->device, sizeof(*dpc), GFP_KERNEL); |
93 | if (!dpc) | 93 | if (!dpc) |
94 | return -ENOMEM; | 94 | return -ENOMEM; |
95 | 95 | ||
@@ -98,11 +98,12 @@ static int dpc_probe(struct pcie_device *dev) | |||
98 | INIT_WORK(&dpc->work, interrupt_event_handler); | 98 | INIT_WORK(&dpc->work, interrupt_event_handler); |
99 | set_service_data(dev, dpc); | 99 | set_service_data(dev, dpc); |
100 | 100 | ||
101 | status = request_irq(dev->irq, dpc_irq, IRQF_SHARED, "pcie-dpc", dpc); | 101 | status = devm_request_irq(&dev->device, dev->irq, dpc_irq, IRQF_SHARED, |
102 | "pcie-dpc", dpc); | ||
102 | if (status) { | 103 | if (status) { |
103 | dev_warn(&dev->device, "request IRQ%d failed: %d\n", dev->irq, | 104 | dev_warn(&dev->device, "request IRQ%d failed: %d\n", dev->irq, |
104 | status); | 105 | status); |
105 | goto out; | 106 | return status; |
106 | } | 107 | } |
107 | 108 | ||
108 | pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CAP, &cap); | 109 | pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CAP, &cap); |
@@ -117,9 +118,6 @@ static int dpc_probe(struct pcie_device *dev) | |||
117 | FLAG(cap, PCI_EXP_DPC_CAP_SW_TRIGGER), (cap >> 8) & 0xf, | 118 | FLAG(cap, PCI_EXP_DPC_CAP_SW_TRIGGER), (cap >> 8) & 0xf, |
118 | FLAG(cap, PCI_EXP_DPC_CAP_DL_ACTIVE)); | 119 | FLAG(cap, PCI_EXP_DPC_CAP_DL_ACTIVE)); |
119 | return status; | 120 | return status; |
120 | out: | ||
121 | kfree(dpc); | ||
122 | return status; | ||
123 | } | 121 | } |
124 | 122 | ||
125 | static void dpc_remove(struct pcie_device *dev) | 123 | static void dpc_remove(struct pcie_device *dev) |
@@ -131,9 +129,6 @@ static void dpc_remove(struct pcie_device *dev) | |||
131 | pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, &ctl); | 129 | pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, &ctl); |
132 | ctl &= ~(PCI_EXP_DPC_CTL_EN_NONFATAL | PCI_EXP_DPC_CTL_INT_EN); | 130 | ctl &= ~(PCI_EXP_DPC_CTL_EN_NONFATAL | PCI_EXP_DPC_CTL_INT_EN); |
133 | pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl); | 131 | pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl); |
134 | |||
135 | free_irq(dev->irq, dpc); | ||
136 | kfree(dpc); | ||
137 | } | 132 | } |
138 | 133 | ||
139 | static struct pcie_port_service_driver dpcdriver = { | 134 | static struct pcie_port_service_driver dpcdriver = { |