All of lore.kernel.org
 help / color / mirror / Atom feed
* [KJ] [PATCH] drivers/scsi/advansys.c: Convert pci_find_device() to
@ 2005-07-07 21:14 James Lamanna
  2005-07-08 17:19 ` [KJ] [PATCH] drivers/scsi/advansys.c: Convert pci_find_device() Greg KH
  2005-07-08 18:04 ` James Lamanna
  0 siblings, 2 replies; 3+ messages in thread
From: James Lamanna @ 2005-07-07 21:14 UTC (permalink / raw)
  To: kernel-janitors

So here's a conversion of another driver from pci_find_device() to
pci_get_device().
After reading Greg's earlier comments about this change, hopefully
this is mostly correct.
Oh and BTW, advansys.c needs a serious Lindent run and some warnings
cleanup, but that will have to be for another day...
This patch matches the current indentation of the file that's why
there are spaces not tabs.
Compile-tested but not runtime-tested.

Signed-off by: James Lamanna <jlamanna@gmail.com>
 
advansys.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/advansys.c b/drivers/scsi/advansys.c
--- a/drivers/scsi/advansys.c
+++ b/drivers/scsi/advansys.c
@@ -4472,7 +4472,7 @@ advansys_detect(struct scsi_host_templat

                     /* Find all PCI cards. */
                     while (pci_device_id_cnt < ASC_PCI_DEVICE_ID_CNT) {
-                        if ((pci_devp = pci_find_device(ASC_PCI_VENDORID,
+                        if ((pci_devp = pci_get_device(ASC_PCI_VENDORID,
                             pci_device_id[pci_device_id_cnt], pci_devp)) =
                             NULL) {
                             pci_device_id_cnt++;
@@ -5472,7 +5472,10 @@ advansys_release(struct Scsi_Host *shp)
             boardp->adv_sgblkp = sgp->next_sgblkp;
             kfree(sgp);
         }
-    }
+        pci_dev_put(to_pci_dev(boardp->dvc_cfg.adv_dvc_cfg.dev));
+    } else
+        pci_dev_put(to_pci_dev(boardp->dvc_cfg.asc_dvc_cfg.dev));
+
 #ifdef CONFIG_PROC_FS
     ASC_ASSERT(boardp->prtbuf != NULL);
     kfree(boardp->prtbuf);

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-07-08 18:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-07 21:14 [KJ] [PATCH] drivers/scsi/advansys.c: Convert pci_find_device() to James Lamanna
2005-07-08 17:19 ` [KJ] [PATCH] drivers/scsi/advansys.c: Convert pci_find_device() Greg KH
2005-07-08 18:04 ` James Lamanna

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.