- Timestamp:
- May 16, 2020, 10:05:07 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-linux-3.2.102/alsa-kernel/pci/cs4281.c
r598 r612 20 20 */ 21 21 22 #ifdef TARGET_OS2 23 #define KBUILD_MODNAME "cs4281" 24 #endif 25 22 26 #include <asm/io.h> 23 27 #include <linux/delay.h> … … 27 31 #include <linux/slab.h> 28 32 #include <linux/gameport.h> 29 #include <linux/module param.h>33 #include <linux/module.h> 30 34 #include <sound/core.h> 31 35 #include <sound/control.h> … … 1383 1387 1384 1388 if (request_irq(pci->irq, snd_cs4281_interrupt, IRQF_SHARED, 1385 "CS4281", chip)) {1389 KBUILD_MODNAME, chip)) { 1386 1390 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq); 1387 1391 snd_cs4281_free(chip); … … 2086 2090 2087 2091 static struct pci_driver driver = { 2088 .name = "CS4281",2092 .name = KBUILD_MODNAME, 2089 2093 .id_table = snd_cs4281_ids, 2090 2094 .probe = snd_cs4281_probe,
Note:
See TracChangeset
for help on using the changeset viewer.