Changeset 598 for GPL/trunk/alsa-kernel/pci/nm256/nm256.c
- Timestamp:
- Apr 3, 2017, 4:51:56 PM (8 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk ¶
-
Property svn:mergeinfo
set to
/GPL/branches/uniaud32-2.1.x merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified GPL/trunk/alsa-kernel/pci/nm256/nm256.c ¶
r464 r598 1 /* 1 /* 2 2 * Driver for NeoMagic 256AV and 256ZX chipsets. 3 3 * Copyright (c) 2000 by Takashi Iwai <tiwai@suse.de> … … 24 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 */ 26 26 27 27 #include <asm/io.h> 28 28 #include <linux/delay.h> … … 87 87 88 88 /* just for backward compatibility */ 89 static int enable;89 //static int enable; 90 90 module_param(enable, bool, 0444); 91 91 … … 263 263 * PCI ids 264 264 */ 265 static struct pci_device_id snd_nm256_ids[]= {265 static DEFINE_PCI_DEVICE_TABLE(snd_nm256_ids) = { 266 266 {PCI_VDEVICE(NEOMAGIC, PCI_DEVICE_ID_NEOMAGIC_NM256AV_AUDIO), 0}, 267 267 {PCI_VDEVICE(NEOMAGIC, PCI_DEVICE_ID_NEOMAGIC_NM256ZX_AUDIO), 0}, … … 401 401 }; 402 402 static struct snd_pcm_hw_constraint_list constraints_rates = { 403 .count = ARRAY_SIZE(samplerates), 403 .count = ARRAY_SIZE(samplerates), 404 404 .list = samplerates, 405 405 .mask = 0, … … 957 957 958 958 959 /* 960 * Initialize the hardware. 959 /* 960 * Initialize the hardware. 961 961 */ 962 962 static void … … 998 998 } 999 999 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. 1002 1002 * 1003 1003 * I don't like the cut-n-paste job here either between the two routines, … … 1148 1148 testb = chip->mixer_status_mask; 1149 1149 1150 /* 1151 * Loop around waiting for the mixer to become ready. 1150 /* 1151 * Loop around waiting for the mixer to become ready. 1152 1152 */ 1153 1153 while (timeout-- > 0) { … … 1159 1159 } 1160 1160 1161 /* 1161 /* 1162 1162 * Initial register values to be written to the AC97 mixer. 1163 1163 * While most of these are identical to the reset values, we do this … … 1188 1188 { AC97_REC_GAIN, 0x0B0B }, 1189 1189 { AC97_GENERAL_PURPOSE, 0x0000 }, 1190 { AC97_3D_CONTROL, 0x8000 }, 1190 { AC97_3D_CONTROL, 0x8000 }, 1191 1191 { AC97_VENDOR_ID1, 0x8384 }, 1192 1192 { AC97_VENDOR_ID2, 0x7609 }, … … 1218 1218 } 1219 1219 1220 /* 1220 /* 1221 1221 */ 1222 1222 static void … … 1331 1331 } 1332 1332 1333 /* 1333 /* 1334 1334 * See if the signature left by the NM256 BIOS is intact; if so, we use 1335 1335 * the associated address as the end of our audio buffer in the video … … 1499 1499 chip->streams[SNDRV_PCM_STREAM_CAPTURE].bufsize = capture_bufsize * 1024; 1500 1500 1501 /* 1501 /* 1502 1502 * The NM256 has two memory ports. The first port is nothing 1503 1503 * 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.