All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] Fix bt87x.c build problem
       [not found] <200507061824.j66IODbD018395@hera.kernel.org>
@ 2005-07-06 19:29 ` Dave Jones
  0 siblings, 0 replies; only message in thread
From: Dave Jones @ 2005-07-06 19:29 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Greg Kroah-Hartman, Linus Torvalds

On Wed, Jul 06, 2005 at 11:24:13AM -0700, Linux Kernel wrote:
 > tree 2fe5cb66de97b707e23d531578dc2a656855415e
 > parent 3d3c2ae1101c1f2dff7e2f9d514769779dbd2737
 > author Greg KH <greg@kroah.com> Wed, 06 Jul 2005 22:51:03 -0700
 > committer Linus Torvalds <torvalds@g5.osdl.org> Wed, 06 Jul 2005 23:34:23 -0700
 > 
 > [PATCH] Fix bt87x.c build problem
 > 
 > Missing forward declaration
 > 
 > Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
 > Signed-off-by: Linus Torvalds <torvalds@osdl.org>
 > 
 >  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 <davej@redhat.com>

--- 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;
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-07-06 20:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <200507061824.j66IODbD018395@hera.kernel.org>
2005-07-06 19:29 ` [PATCH] Fix bt87x.c build problem Dave Jones

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.