All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jiri Slaby <jirislaby@gmail.com>
To: caglar@pardus.org.tr
Cc: LKML <linux-kernel@vger.kernel.org>,
	kkeil@suse.de, kai.germaschewski@gmx.de,
	isdn4linux@listserv.isdn4linux.de
Subject: Re: [PATCH 12/12] drivers/isdn/hisax/w6692.c: replace pci_find_device with pci_get_device
Date: Sat, 14 Jul 2007 07:53:32 +0200	[thread overview]
Message-ID: <469864DC.7040305@gmail.com> (raw)
In-Reply-To: <200707140144.58514.caglar@pardus.org.tr>

S.Çağlar Onur napsal(a):
> Following patch replaces pci_find_device with pci_get_device to avoid 
> following compiliation warning;
> 
> drivers/isdn/hisax/w6692.c: In function `setup_w6692':
> drivers/isdn/hisax/w6692.c:1014: warning: `pci_find_device' is deprecated 
> (declared at include/linux/pci.h:478)
> 
> and also removes trailing whitespaces at the ends of lines and converts 
> smarttabs/whitespaces into real tabs
> 
> Signed-off-by: S.Çağlar Onur <caglar@pardus.org.tr>
> 
> ---
>  drivers/isdn/hisax/w6692.c |   15 ++++++++++-----
>  1 file changed, 10 insertions(+), 5 deletions(-)
> 
> Index: linux-2.6/drivers/isdn/hisax/w6692.c
> ===================================================================
> --- linux-2.6.orig/drivers/isdn/hisax/w6692.c
> +++ linux-2.6/drivers/isdn/hisax/w6692.c
> @@ -1011,7 +1011,7 @@ setup_w6692(struct IsdnCard *card)
>  		return (0);
>  #ifdef CONFIG_PCI
>  	while (id_list[id_idx].vendor_id) {
> -		dev_w6692 = pci_find_device(id_list[id_idx].vendor_id,
> +		dev_w6692 = pci_get_device(id_list[id_idx].vendor_id,
>  					    id_list[id_idx].device_id,
>  					    dev_w6692);
>  		if (dev_w6692) {
> @@ -1031,7 +1031,7 @@ setup_w6692(struct IsdnCard *card)
>  		/* USR ISDN PCI card TA need some special handling */
>  		if (cs->subtyp == W6692_WINBOND) {
>  			if ((W6692_SV_USR == dev_w6692->subsystem_vendor) &&
> -			    (W6692_SD_USR == dev_w6692->subsystem_device)) {
> +				(W6692_SD_USR == dev_w6692->subsystem_device)) {
>  				cs->subtyp = W6692_USR;
>  			}
>  		}
> @@ -1043,11 +1043,11 @@ setup_w6692(struct IsdnCard *card)
>  	cs->irq = pci_irq;
>  	if (!cs->irq) {
>  		printk(KERN_WARNING "W6692: No IRQ for PCI card found\n");
> -		return (0);
> +		goto dev_w6692_cleanup;
>  	}
>  	if (!pci_ioaddr) {
>  		printk(KERN_WARNING "W6692: NO I/O Base Address found\n");
> -		return (0);
> +		goto dev_w6692_cleanup;
>  	}
>  	cs->hw.w6692.iobase = pci_ioaddr;
>  	printk(KERN_INFO "Found: %s %s, I/O base: 0x%x, irq: %d\n",
> @@ -1059,7 +1059,7 @@ setup_w6692(struct IsdnCard *card)
>  		       id_list[cs->subtyp].card_name,
>  		       cs->hw.w6692.iobase,
>  		       cs->hw.w6692.iobase + 255);
> -		return (0);
> +		goto dev_w6692_cleanup;
>  	}
>  #else
>  	printk(KERN_WARNING "HiSax: W6692 and NO_PCI_BIOS\n");
> @@ -1089,5 +1089,10 @@ setup_w6692(struct IsdnCard *card)
>  	printk(KERN_INFO "W6692 D_EXIR=0x%X\n", ReadW6692(cs, W_D_EXIR));
>  	printk(KERN_INFO "W6692 D_EXIM=0x%X\n", ReadW6692(cs, W_D_EXIM));
>  	printk(KERN_INFO "W6692 D_RSTA=0x%X\n", ReadW6692(cs, W_D_RSTA));
> +	pci_dev_put(dev_w6692);

Why do you release a reference here when you use the card all the time module is
loaded?

-- 
Jiri Slaby (jirislaby@gmail.com)
Faculty of Informatics, Masaryk University

      reply	other threads:[~2007-07-14  5:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-13 22:44 [PATCH 12/12] drivers/isdn/hisax/w6692.c: replace pci_find_device with pci_get_device S.Çağlar Onur
2007-07-14  5:53 ` Jiri Slaby [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=469864DC.7040305@gmail.com \
    --to=jirislaby@gmail.com \
    --cc=caglar@pardus.org.tr \
    --cc=isdn4linux@listserv.isdn4linux.de \
    --cc=kai.germaschewski@gmx.de \
    --cc=kkeil@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.