- 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/bt87x.c
r598 r612 22 22 */ 23 23 24 #ifdef TARGET_OS2 25 #define KBUILD_MODNAME "bt87x" 26 #endif 27 24 28 #include <linux/init.h> 25 29 #include <linux/interrupt.h> 26 30 #include <linux/pci.h> 27 31 #include <linux/slab.h> 28 #include <linux/module param.h>32 #include <linux/module.h> 29 33 #include <linux/bitops.h> 30 34 #include <asm/io.h> … … 766 770 767 771 err = request_irq(pci->irq, snd_bt87x_interrupt, IRQF_SHARED, 768 "Bt87x audio", chip);772 KBUILD_MODNAME, chip); 769 773 if (err < 0) { 770 774 snd_printk(KERN_ERR "cannot grab irq %d\n", pci->irq); … … 998 1002 999 1003 static struct pci_driver driver = { 1000 .name = "Bt87x",1004 .name = KBUILD_MODNAME, 1001 1005 .id_table = snd_bt87x_ids, 1002 1006 .probe = snd_bt87x_probe,
Note:
See TracChangeset
for help on using the changeset viewer.