* [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* Re: [KJ] [PATCH] drivers/scsi/advansys.c: Convert pci_find_device()
2005-07-07 21:14 [KJ] [PATCH] drivers/scsi/advansys.c: Convert pci_find_device() to James Lamanna
@ 2005-07-08 17:19 ` Greg KH
2005-07-08 18:04 ` James Lamanna
1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2005-07-08 17:19 UTC (permalink / raw)
To: kernel-janitors
[-- Attachment #1: Type: text/plain, Size: 1881 bytes --]
On Thu, Jul 07, 2005 at 02:14:39PM -0700, James Lamanna wrote:
> 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,
This looks correct.
> 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));
> +
Why not just move this out of the if statement as you are doing it
either way?
Also, this driver doesn't even work, see the big #warning at the top of
it. You might want to ask the linux-scsi list if it's obsolete.
thanks,
greg k-h
[-- Attachment #2: Type: text/plain, Size: 168 bytes --]
_______________________________________________
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* Re: [KJ] [PATCH] drivers/scsi/advansys.c: Convert pci_find_device()
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
1 sibling, 0 replies; 3+ messages in thread
From: James Lamanna @ 2005-07-08 18:04 UTC (permalink / raw)
To: kernel-janitors
On 7/8/05, Greg KH <greg@kroah.com> wrote:
[snip]
> Why not just move this out of the if statement as you are doing it
> either way?
Depending on whether the board is a "wide" or "narrow" board, the dev
struct is stored in a different field of the union (adv_dvc_cfg vs.
asc_dvc_cfg - not much difference in names there, easy to miss)
> Also, this driver doesn't even work, see the big #warning at the top of
> it. You might want to ask the linux-scsi list if it's obsolete.
Ah, apparently I'm blind.
I guess this was the first driver I stumbled upon needing the conversion.
I'll check around about that.
I'll also see if there are any non-broken/warned drivers that need
this fix that I can tackle.
Thanks.
_______________________________________________
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.