Ignore:
Timestamp:
May 16, 2020, 10:05:07 AM (5 years ago)
Author:
Paul Smedley
Message:

Commit 3..102 changes from trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-linux-3.2.102/alsa-kernel/pci/cs4281.c

    r598 r612  
    2020 */
    2121
     22#ifdef TARGET_OS2
     23#define KBUILD_MODNAME "cs4281"
     24#endif
     25
    2226#include <asm/io.h>
    2327#include <linux/delay.h>
     
    2731#include <linux/slab.h>
    2832#include <linux/gameport.h>
    29 #include <linux/moduleparam.h>
     33#include <linux/module.h>
    3034#include <sound/core.h>
    3135#include <sound/control.h>
     
    13831387       
    13841388        if (request_irq(pci->irq, snd_cs4281_interrupt, IRQF_SHARED,
    1385                         "CS4281", chip)) {
     1389                        KBUILD_MODNAME, chip)) {
    13861390                snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
    13871391                snd_cs4281_free(chip);
     
    20862090
    20872091static struct pci_driver driver = {
    2088         .name = "CS4281",
     2092        .name = KBUILD_MODNAME,
    20892093        .id_table = snd_cs4281_ids,
    20902094        .probe = snd_cs4281_probe,
Note: See TracChangeset for help on using the changeset viewer.