Ignore:
Timestamp:
Apr 3, 2017, 4:51:56 PM (8 years ago)
Author:
David Azarewicz
Message:

Merged/reintegrated v2 branch into trunk. Trunk is now v2

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • TabularUnified GPL/trunk/alsa-kernel/pci/nm256/nm256.c

    r464 r598  
    1 /* 
     1/*
    22 * Driver for NeoMagic 256AV and 256ZX chipsets.
    33 * Copyright (c) 2000 by Takashi Iwai <tiwai@suse.de>
     
    2424 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
    2525 */
    26  
     26
    2727#include <asm/io.h>
    2828#include <linux/delay.h>
     
    8787
    8888/* just for backward compatibility */
    89 static int enable;
     89//static int enable;
    9090module_param(enable, bool, 0444);
    9191
     
    263263 * PCI ids
    264264 */
    265 static struct pci_device_id snd_nm256_ids[] = {
     265static DEFINE_PCI_DEVICE_TABLE(snd_nm256_ids) = {
    266266        {PCI_VDEVICE(NEOMAGIC, PCI_DEVICE_ID_NEOMAGIC_NM256AV_AUDIO), 0},
    267267        {PCI_VDEVICE(NEOMAGIC, PCI_DEVICE_ID_NEOMAGIC_NM256ZX_AUDIO), 0},
     
    401401};
    402402static struct snd_pcm_hw_constraint_list constraints_rates = {
    403         .count = ARRAY_SIZE(samplerates), 
     403        .count = ARRAY_SIZE(samplerates),
    404404        .list = samplerates,
    405405        .mask = 0,
     
    957957
    958958
    959 /* 
    960  * Initialize the hardware. 
     959/*
     960 * Initialize the hardware.
    961961 */
    962962static void
     
    998998}
    999999
    1000 /* 
    1001  * Handle a potential interrupt for the device referred to by DEV_ID. 
     1000/*
     1001 * Handle a potential interrupt for the device referred to by DEV_ID.
    10021002 *
    10031003 * I don't like the cut-n-paste job here either between the two routines,
     
    11481148        testb = chip->mixer_status_mask;
    11491149
    1150         /* 
    1151          * Loop around waiting for the mixer to become ready. 
     1150        /*
     1151         * Loop around waiting for the mixer to become ready.
    11521152         */
    11531153        while (timeout-- > 0) {
     
    11591159}
    11601160
    1161 /* 
     1161/*
    11621162 * Initial register values to be written to the AC97 mixer.
    11631163 * While most of these are identical to the reset values, we do this
     
    11881188        { AC97_REC_GAIN,        0x0B0B },
    11891189        { AC97_GENERAL_PURPOSE, 0x0000 },
    1190         { AC97_3D_CONTROL,      0x8000 }, 
     1190        { AC97_3D_CONTROL,      0x8000 },
    11911191        { AC97_VENDOR_ID1,      0x8384 },
    11921192        { AC97_VENDOR_ID2,      0x7609 },
     
    12181218}
    12191219
    1220 /* 
     1220/*
    12211221 */
    12221222static void
     
    13311331}
    13321332
    1333 /* 
     1333/*
    13341334 * See if the signature left by the NM256 BIOS is intact; if so, we use
    13351335 * the associated address as the end of our audio buffer in the video
     
    14991499        chip->streams[SNDRV_PCM_STREAM_CAPTURE].bufsize = capture_bufsize * 1024;
    15001500
    1501         /* 
     1501        /*
    15021502         * The NM256 has two memory ports.  The first port is nothing
    15031503         * more than a chunk of video RAM, which is used as the I/O ring
Note: See TracChangeset for help on using the changeset viewer.