diff options
author | Dave Jones <davej@redhat.com> | 2005-07-06 15:29:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-06 12:40:35 -0700 |
commit | 159f597a8bd0f1d7650d5e580c93a2666c9c26d1 (patch) | |
tree | 70eef6f2d06a6f3ac36ef8ac8ea24445880986a0 /sound | |
parent | 83b78bd2d31f12d7d9317d9802a1996a7bd8a6f2 (diff) | |
download | linux-3.10-159f597a8bd0f1d7650d5e580c93a2666c9c26d1.tar.gz linux-3.10-159f597a8bd0f1d7650d5e580c93a2666c9c26d1.tar.bz2 linux-3.10-159f597a8bd0f1d7650d5e580c93a2666c9c26d1.zip |
[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')
-rw-r--r-- | sound/pci/bt87x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c index 15202f15a02..c5557eaf3e2 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) 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; |