diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-23 18:49:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-23 18:49:57 -0500 |
commit | a3ea9b584ed2acdeae817f0dc91a5880e0828a05 (patch) | |
tree | 5b4ef9b10c05aa84419a6ba6187d0dcd14654c97 /drivers/pci/search.c | |
parent | 554f593d6c411e717a71ffdcb0cfb46bb2394502 (diff) | |
parent | b2e6e3ba7deb525f180df64f32f3fcb214538bea (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/pci-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/gregkh/pci-2.6: (49 commits)
[PATCH] acpiphp: fix acpi_path_name
[PATCH] ibmphp: remove TRUE and FALSE
[PATCH] PCI Hotplug: add common acpi functions to core
[PATCH] PCI: kzalloc() conversion in drivers/pci
[PATCH] acpiphp: Scan slots under the nested P2P bridge
[PATCH] PCI Hotplug: SN: Fix cleanup on hotplug removal of PPB
[PATCH] shpchp: cleanup bus speed handling
[PATCH] PCI: fix pci_request_region[s] arg
[PATCH] PCI: Provide a boot parameter to disable MSI
[PATCH] PCI: the scheduled removal of PCI_LEGACY_PROC
[PATCH] PCI: cpqphp_ctrl.c: board_replaced(): remove dead code
[PATCH] acpiphp: fix bridge handle
[PATCH] acpiphp - slot management fix - V4
[PATCH] acpi: remove dock event handling from ibm_acpi
[PATCH] acpiphp: add dock event handling
[PATCH] acpi: export acpi_bus_trim
[PATCH] acpiphp: add new bus to acpi
[PATCH] PCI: Move pci_dev_put outside a spinlock
[PATCH] PCI: PCI/Cardbus cards hidden, needs pci=assign-busses to fix
[PATCH] PCI: fix problems with MSI-X on ia64
...
Diffstat (limited to 'drivers/pci/search.c')
-rw-r--r-- | drivers/pci/search.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/search.c b/drivers/pci/search.c index 05fa91a31c62..ce7dd6e7be60 100644 --- a/drivers/pci/search.c +++ b/drivers/pci/search.c | |||
@@ -246,9 +246,9 @@ pci_get_subsys(unsigned int vendor, unsigned int device, | |||
246 | } | 246 | } |
247 | dev = NULL; | 247 | dev = NULL; |
248 | exit: | 248 | exit: |
249 | pci_dev_put(from); | ||
250 | dev = pci_dev_get(dev); | 249 | dev = pci_dev_get(dev); |
251 | spin_unlock(&pci_bus_lock); | 250 | spin_unlock(&pci_bus_lock); |
251 | pci_dev_put(from); | ||
252 | return dev; | 252 | return dev; |
253 | } | 253 | } |
254 | 254 | ||
@@ -339,9 +339,9 @@ struct pci_dev *pci_get_class(unsigned int class, struct pci_dev *from) | |||
339 | } | 339 | } |
340 | dev = NULL; | 340 | dev = NULL; |
341 | exit: | 341 | exit: |
342 | pci_dev_put(from); | ||
343 | dev = pci_dev_get(dev); | 342 | dev = pci_dev_get(dev); |
344 | spin_unlock(&pci_bus_lock); | 343 | spin_unlock(&pci_bus_lock); |
344 | pci_dev_put(from); | ||
345 | return dev; | 345 | return dev; |
346 | } | 346 | } |
347 | 347 | ||