aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2005-07-06 15:29:09 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-06 15:40:35 -0400
commit159f597a8bd0f1d7650d5e580c93a2666c9c26d1 (patch)
tree70eef6f2d06a6f3ac36ef8ac8ea24445880986a0 /sound/pci
parent83b78bd2d31f12d7d9317d9802a1996a7bd8a6f2 (diff)
[PATCH] Fix bt87x.c build problem for real
Just the declaration fix wasn't enough to fix things in bt78x.c Signed-off-by: Dave Jones <davej@redhat.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/bt87x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c
index 15202f15a02b..c5557eaf3e2e 100644
--- a/sound/pci/bt87x.c
+++ b/sound/pci/bt87x.c
@@ -806,7 +806,7 @@ static int __devinit snd_bt87x_detect_card(struct pci_dev *pci)
806 int i; 806 int i;
807 const struct pci_device_id *supported; 807 const struct pci_device_id *supported;
808 808
809 supported = pci_match_device(driver, pci); 809 supported = pci_match_device(&driver, pci);
810 if (supported) 810 if (supported)
811 return supported->driver_data; 811 return supported->driver_data;
812 812