diff options
Diffstat (limited to 'sound/pci/ctxfi/xfi.c')
-rw-r--r-- | sound/pci/ctxfi/xfi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/ctxfi/xfi.c b/sound/pci/ctxfi/xfi.c index f42e7e1a107..b259aa03a3a 100644 --- a/sound/pci/ctxfi/xfi.c +++ b/sound/pci/ctxfi/xfi.c | |||
@@ -80,11 +80,11 @@ ct_card_probe(struct pci_dev *pci, const struct pci_device_id *pci_id) | |||
80 | "are 48000 and 44100, Value 48000 is assumed.\n"); | 80 | "are 48000 and 44100, Value 48000 is assumed.\n"); |
81 | reference_rate = 48000; | 81 | reference_rate = 48000; |
82 | } | 82 | } |
83 | if ((multiple != 1) && (multiple != 2)) { | 83 | if ((multiple != 1) && (multiple != 2) && (multiple != 4)) { |
84 | printk(KERN_ERR "ctxfi: Invalid multiple value %u!!!\n", | 84 | printk(KERN_ERR "ctxfi: Invalid multiple value %u!!!\n", |
85 | multiple); | 85 | multiple); |
86 | printk(KERN_ERR "ctxfi: The valid values for multiple are " | 86 | printk(KERN_ERR "ctxfi: The valid values for multiple are " |
87 | "1 and 2, Value 2 is assumed.\n"); | 87 | "1, 2 and 4, Value 2 is assumed.\n"); |
88 | multiple = 2; | 88 | multiple = 2; |
89 | } | 89 | } |
90 | err = ct_atc_create(card, pci, reference_rate, multiple, | 90 | err = ct_atc_create(card, pci, reference_rate, multiple, |
@@ -143,7 +143,7 @@ static int ct_card_resume(struct pci_dev *pci) | |||
143 | #endif | 143 | #endif |
144 | 144 | ||
145 | static struct pci_driver ct_driver = { | 145 | static struct pci_driver ct_driver = { |
146 | .name = "SB-XFi", | 146 | .name = KBUILD_MODNAME, |
147 | .id_table = ct_pci_dev_ids, | 147 | .id_table = ct_pci_dev_ids, |
148 | .probe = ct_card_probe, | 148 | .probe = ct_card_probe, |
149 | .remove = __devexit_p(ct_card_remove), | 149 | .remove = __devexit_p(ct_card_remove), |