Changeset 130 for GPL/trunk/alsa-kernel/pci
- Timestamp:
- Jun 12, 2007, 11:32:16 PM (18 years ago)
- Location:
- GPL/trunk/alsa-kernel/pci
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/alsa-kernel/pci/ac97/ac97_codec.c
r86 r130 1931 1931 } 1932 1932 1933 #if 0 // fixme to be gone? 1933 1934 /* stop no dev release warning */ 1934 1935 static void ac97_device_release(struct device * dev) 1935 1936 { 1936 1937 } 1938 #endif // fixme to be gone? 1937 1939 1938 1940 /* register ac97 codec to bus */ 1939 1941 static int snd_ac97_dev_register(struct snd_device *device) 1940 1942 { 1941 #if 0 1943 #if 0 // fixme to be gone? 1942 1944 struct snd_ac97 *ac97 = device->device_data; 1943 1945 int err; … … 1954 1956 return err; 1955 1957 } 1956 #endif 1958 #endif // fixme to be gone? 1957 1959 return 0; 1958 1960 } -
GPL/trunk/alsa-kernel/pci/ac97/ac97_patch.c
r86 r130 2081 2081 unsigned short val; 2082 2082 2083 if (ucontrol->value.enumerated.item[0] > 3 2084 || ucontrol->value.enumerated.item[0] < 0) 2083 // if (ucontrol->value.enumerated.item[0] > 3 // 12 Jun 07 SHL 2084 // || ucontrol->value.enumerated.item[0] < 0) // 12 Jun 07 SHL 2085 if (ucontrol->value.enumerated.item[0] > 3) 2085 2086 return -EINVAL; 2086 2087 val = ctrl2reg[ucontrol->value.enumerated.item[0]] -
GPL/trunk/alsa-kernel/pci/emu10k1/emu10k1x.c
r84 r130 780 780 } 781 781 782 static irqreturn_t snd_emu10k1x_interrupt(int irq, void *dev_id )782 static irqreturn_t snd_emu10k1x_interrupt(int irq, void *dev_id, struct pt_regs *unused) 783 783 { 784 784 unsigned int status; -
GPL/trunk/alsa-kernel/pci/emu10k1/emuproc.c
r34 r130 176 176 177 177 struct snd_emu10k1 *emu = entry->private_data; 178 unsigned int val ;178 unsigned int val = 0; // 11 Jun 07 SHL fixme to know why not used 179 179 int nefx = emu->audigy ? 64 : 32; 180 180 char **outputs = emu->audigy ? audigy_outs : creative_outs; -
GPL/trunk/alsa-kernel/pci/emu10k1/irq.c
r84 r130 32 32 #include <sound/emu10k1.h> 33 33 34 irqreturn_t snd_emu10k1_interrupt(int irq, void *dev_id )34 irqreturn_t snd_emu10k1_interrupt(int irq, void *dev_id, struct pt_regs *notused) 35 35 { 36 36 struct snd_emu10k1 *emu = dev_id; -
GPL/trunk/alsa-kernel/pci/hda/hda_intel.c
r86 r130 398 398 * Compiler should optimize and eliminate the code if dma_addr_t is 32bit 399 399 */ 400 #define upper_32bit(addr) (sizeof(addr) > 4 ? (u32)(( addr) >> 32) : (u32)0)400 #define upper_32bit(addr) (sizeof(addr) > 4 ? (u32)(((unsigned long long)addr) >> 32) : (u32)0) 401 401 402 402 static int azx_acquire_irq(struct azx *chip, int do_disconnect);
Note:
See TracChangeset
for help on using the changeset viewer.