* ALSA bt87x compile failure in 2.6.13-rc3
@ 2005-07-06 6:27 Meelis Roos
2005-07-06 8:42 ` Meelis Roos
2005-07-06 10:13 ` Takashi Iwai
0 siblings, 2 replies; 3+ messages in thread
From: Meelis Roos @ 2005-07-06 6:27 UTC (permalink / raw)
To: Linux Kernel list
CC [M] sound/pci/bt87x.o
sound/pci/bt87x.c: In function `snd_bt87x_detect_card':
sound/pci/bt87x.c:807: error: `driver' undeclared (first use in this function)
sound/pci/bt87x.c:807: error: (Each undeclared identifier is reported only once
sound/pci/bt87x.c:807: error: for each function it appears in.)
sound/pci/bt87x.c: At top level:
sound/pci/bt87x.c:910: error: `driver' used prior to declaration
make[2]: *** [sound/pci/bt87x.o] Error 1
Substituting driver with pci->driver seems to cure it, it this the
correct fix?
--
Meelis Roos (mroos@linux.ee)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: ALSA bt87x compile failure in 2.6.13-rc3
2005-07-06 6:27 ALSA bt87x compile failure in 2.6.13-rc3 Meelis Roos
@ 2005-07-06 8:42 ` Meelis Roos
2005-07-06 10:13 ` Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Meelis Roos @ 2005-07-06 8:42 UTC (permalink / raw)
To: linux-kernel
MR> Substituting driver with pci->driver seems to cure it, it this the
MR> correct fix?
I mean, the second argument to pci_match_device is already pci so it
looks strange.
Anyway, here is the patch that I used to get it to compile - untested.
Signed-off-by: Meelis Roos <mroos@linux.ee>
diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c
--- a/sound/pci/bt87x.c
+++ b/sound/pci/bt87x.c
@@ -804,7 +804,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(pci->driver, pci);
if (supported)
return supported->driver_data;
--
Meelis Roos
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: ALSA bt87x compile failure in 2.6.13-rc3
2005-07-06 6:27 ALSA bt87x compile failure in 2.6.13-rc3 Meelis Roos
2005-07-06 8:42 ` Meelis Roos
@ 2005-07-06 10:13 ` Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2005-07-06 10:13 UTC (permalink / raw)
To: Meelis Roos; +Cc: Linux Kernel list
At Wed, 6 Jul 2005 09:27:36 +0300 (EEST),
Meelis Roos wrote:
>
> CC [M] sound/pci/bt87x.o
> sound/pci/bt87x.c: In function `snd_bt87x_detect_card':
> sound/pci/bt87x.c:807: error: `driver' undeclared (first use in this function)
> sound/pci/bt87x.c:807: error: (Each undeclared identifier is reported only once
> sound/pci/bt87x.c:807: error: for each function it appears in.)
> sound/pci/bt87x.c: At top level:
> sound/pci/bt87x.c:910: error: `driver' used prior to declaration
> make[2]: *** [sound/pci/bt87x.o] Error 1
>
> Substituting driver with pci->driver seems to cure it, it this the
> correct fix?
The below one-liner should fix.
Takashi
----
[ALSA] Fix the compilation of bt87x.c
Use pci_match_id() function instead of pci_match_device() to compile
properly.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c
--- a/sound/pci/bt87x.c
+++ b/sound/pci/bt87x.c
@@ -804,7 +804,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_id(snd_bt87x_ids, pci);
if (supported)
return supported->driver_data;
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-07-06 14:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-06 6:27 ALSA bt87x compile failure in 2.6.13-rc3 Meelis Roos
2005-07-06 8:42 ` Meelis Roos
2005-07-06 10:13 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®