Re: [PATCH] Fix bt87x.c build problem

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, Jul 06, 2005 at 11:24:13AM -0700, Linux Kernel wrote:
 > tree 2fe5cb66de97b707e23d531578dc2a656855415e
 > parent 3d3c2ae1101c1f2dff7e2f9d514769779dbd2737
 > author Greg KH <[email protected]> Wed, 06 Jul 2005 22:51:03 -0700
 > committer Linus Torvalds <[email protected]> Wed, 06 Jul 2005 23:34:23 -0700
 > 
 > [PATCH] Fix bt87x.c build problem
 > 
 > Missing forward declaration
 > 
 > Signed-off-by: Greg Kroah-Hartman <[email protected]>
 > Signed-off-by: Linus Torvalds <[email protected]>
 > 
 >  sound/pci/bt87x.c |    2 ++
 >  1 files changed, 2 insertions(+)
 > 
 > diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c
 > --- a/sound/pci/bt87x.c
 > +++ b/sound/pci/bt87x.c
 > @@ -798,6 +798,8 @@ static struct {
 >  	{0x270f, 0xfc00}, /* Chaintech Digitop DST-1000 DVB-S */
 >  };
 >  
 > +static struct pci_driver driver;
 > +
 >  /* return the rate of the card, or a negative value if it's blacklisted */
 >  static int __devinit snd_bt87x_detect_card(struct pci_dev *pci)
 >  {
 > -

Still not enough to make it build here..

sound/pci/bt87x.c:809: error: incompatible type for argument 1 of 'pci_match_device'

Signed-off-by: Dave Jones <[email protected]>

--- linux-2.6.12/sound/pci/bt87x.c~	2005-07-06 14:59:08.000000000 -0400
+++ linux-2.6.12/sound/pci/bt87x.c	2005-07-06 15:26:35.000000000 -0400
@@ -806,7 +806,7 @@ static int __devinit snd_bt87x_detect_ca
 	int i;
 	const struct pci_device_id *supported;
 
-	supported = pci_match_device(driver, pci);
+	supported = pci_match_device(&driver, pci);
 	if (supported)
 		return supported->driver_data;
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]
  Powered by Linux