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/bt87x.c

    r598 r612  
    2222 */
    2323
     24#ifdef TARGET_OS2
     25#define KBUILD_MODNAME "bt87x"
     26#endif
     27
    2428#include <linux/init.h>
    2529#include <linux/interrupt.h>
    2630#include <linux/pci.h>
    2731#include <linux/slab.h>
    28 #include <linux/moduleparam.h>
     32#include <linux/module.h>
    2933#include <linux/bitops.h>
    3034#include <asm/io.h>
     
    766770
    767771        err = request_irq(pci->irq, snd_bt87x_interrupt, IRQF_SHARED,
    768                           "Bt87x audio", chip);
     772                          KBUILD_MODNAME, chip);
    769773        if (err < 0) {
    770774                snd_printk(KERN_ERR "cannot grab irq %d\n", pci->irq);
     
    9981002
    9991003static struct pci_driver driver = {
    1000         .name = "Bt87x",
     1004        .name = KBUILD_MODNAME,
    10011005        .id_table = snd_bt87x_ids,
    10021006        .probe = snd_bt87x_probe,
Note: See TracChangeset for help on using the changeset viewer.