Changeset 106 for GPL/branches/alsa-resync1/alsa-kernel/pci
- Timestamp:
 - May 20, 2007, 1:00:05 AM (18 years ago)
 - Location:
 - GPL/branches/alsa-resync1/alsa-kernel/pci
 - Files:
 - 
      
- 6 edited
 
- 
          
  es1968.c (modified) (2 diffs)
 - 
          
  maestro3.c (modified) (3 diffs)
 - 
          
  trident/trident_main.c (modified) (1 diff)
 - 
          
  trident/trident_memory.c (modified) (1 diff)
 - 
          
  trident/trident_synth.c (modified) (1 diff)
 - 
          
  ymfpci/ymfpci_main.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
GPL/branches/alsa-resync1/alsa-kernel/pci/es1968.c
r92 r106 97 97 #define __SND_OSS_COMPAT__ 98 98 #include <sound/driver.h> 99 #include <asm/io.h> 100 #include <linux/delay.h> 101 #include <linux/interrupt.h> 102 #include <linux/init.h> 103 #include <linux/slab.h> 104 #include <sound/core.h> 99 105 #include <sound/pcm.h> 100 106 #include <sound/mpu401.h> … … 1911 1917 es->count += diff; 1912 1918 1913 if(es->count > es->frag_size) {1919 while (es->count > es->frag_size) { 1914 1920 spin_unlock(&chip->substream_lock); 1915 1921 snd_pcm_period_elapsed(subs);  - 
      
GPL/branches/alsa-resync1/alsa-kernel/pci/maestro3.c
r92 r106 33 33 34 34 #include <sound/driver.h> 35 #include <asm/io.h> 36 #include <linux/delay.h> 37 #include <linux/interrupt.h> 38 #include <linux/init.h> 39 #include <linux/slab.h> 40 #include <linux/vmalloc.h> 41 #include <sound/core.h> 35 42 #include <sound/info.h> 36 43 #include <sound/control.h> … … 42 49 MODULE_AUTHOR("Zach Brown <zab@zabbo.net>, Takashi Iwai <tiwai@suse.de>"); 43 50 MODULE_DESCRIPTION("ESS Maestro3 PCI"); 51 MODULE_LICENSE("GPL"); 44 52 MODULE_CLASSES("{sound}"); 45 53 MODULE_DEVICES("{{ESS,Maestro3 PCI}," … … 2804 2812 chip->suspend_mem = vmalloc(sizeof(u16) * (REV_B_CODE_MEMORY_LENGTH + REV_B_DATA_MEMORY_LENGTH)); 2805 2813 if (chip->suspend_mem == NULL) 2806 snd_printk("can't allocate apm buffer\n"); 2814 snd_printk(KERN_WARNING "can't allocate apm buffer\n"); 2815 else 2816 snd_card_set_pm_callback(card, m3_suspend, m3_resume, chip); 2807 2817 #endif 2808 2818  - 
      
GPL/branches/alsa-resync1/alsa-kernel/pci/trident/trident_main.c
r84 r106 28 28 */ 29 29 30 #define SNDRV_MAIN_OBJECT_FILE30 #define __NO_VERSION__ 31 31 #include <sound/driver.h> 32 #include <asm/io.h> 33 #include <linux/delay.h> 34 #include <linux/init.h> 35 #include <linux/slab.h> 36 #include <linux/vmalloc.h> 37 #include <sound/core.h> 32 38 #include <sound/info.h> 33 39 #include <sound/control.h> 34 40 #include <sound/trident.h> 41 #include <sound/asoundef.h> 35 42 36 43 static int snd_trident_pcm_mixer_build(struct snd_trident *trident, struct snd_trident_voice* voice, snd_pcm_substream_t *substream);  - 
      
GPL/branches/alsa-resync1/alsa-kernel/pci/trident/trident_memory.c
r34 r106 24 24 */ 25 25 26 #define __NO_VERSION__ 26 27 #include <sound/driver.h> 28 #include <asm/io.h> 27 29 #include <linux/pci.h> 30 #include <linux/time.h> 31 #include <sound/core.h> 28 32 #include <sound/trident.h> 29 33  - 
      
GPL/branches/alsa-resync1/alsa-kernel/pci/trident/trident_synth.c
r34 r106 20 20 */ 21 21 22 #define SNDRV_MAIN_OBJECT_FILE23 22 #include <sound/driver.h> 23 #include <asm/io.h> 24 #include <linux/init.h> 25 #include <linux/slab.h> 24 26 #include <linux/pci.h> 27 #include <sound/core.h> 25 28 #include <sound/trident.h> 26 29 #include <sound/seq_device.h>  - 
      
GPL/branches/alsa-resync1/alsa-kernel/pci/ymfpci/ymfpci_main.c
r84 r106 25 25 */ 26 26 27 #define __NO_VERSION__ 27 28 #include <sound/driver.h> 29 #include <asm/io.h> 30 #include <linux/delay.h> 31 #include <linux/init.h> 32 #include <linux/slab.h> 33 #include <sound/core.h> 28 34 #include <sound/control.h> 29 35 #include <sound/info.h> 30 36 #include <sound/ymfpci.h> 37 #include <sound/asoundef.h> 38 #include <sound/mpu401.h> 39 #ifdef TARGET_OS2 31 40 #include <sound/timer.h> 41 #endif /* TARGET_OS2 */ 32 42 33 43 /*  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  