aboutsummaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorJulia Lawall <[email protected]>2007-11-28 16:21:36 -0800
committerLinus Torvalds <[email protected]>2007-11-29 09:24:52 -0800
commit8ea50a3f0b70977939d2d9d3671b8173482afff2 (patch)
treea4ee35119da225174d672618aecf4a507d6cbd5d /include/linux
parentb64d70825abbf706bbe80be1b11b09514b71f45e (diff)
drivers/pnp/resource.c: Add missing pci_dev_put
There should be a pci_dev_put when breaking out of a loop that iterates over calls to pci_get_device and similar functions. This was fixed using the following semantic patch. // <smpl> @@ identifier d; type T; expression e; iterator for_each_pci_dev; @@ T *d; ... for_each_pci_dev(d) {... when != pci_dev_put(d) when != e = d ( return d; | + pci_dev_put(d); ? return ...; ) ...} // </smpl> Signed-off-by: Julia Lawall <[email protected]> Cc: Greg KH <[email protected]> Cc: Bjorn Helgaas <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux')
0 files changed, 0 insertions, 0 deletions