Changeset 445 for GPL/trunk/alsa-kernel/pci
- Timestamp:
- Jun 8, 2009, 11:51:32 AM (16 years ago)
- Location:
- GPL/trunk/alsa-kernel/pci
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/alsa-kernel/pci/bt87x.c
r410 r445 22 22 */ 23 23 24 #ifdef TARGET_OS225 #include <asm/bitops.h>26 #endif27 24 #include <linux/init.h> 28 25 #include <linux/interrupt.h> -
GPL/trunk/alsa-kernel/pci/hda/hda_intel.c
r434 r445 1938 1938 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, " 1939 1939 "disabling device\n", chip->pci->irq); 1940 #ifndef TARGE t_OS21940 #ifndef TARGET_OS2 1941 1941 if (do_disconnect) 1942 1942 snd_card_disconnect(chip->card); -
GPL/trunk/alsa-kernel/pci/hda/makefile.os2
r433 r445 16 16 FILE2 = patch_realtek.obj patch_cmedia.obj patch_analog.obj patch_sigmatel.obj 17 17 FILE3 = patch_si3054.obj patch_atihdmi.obj patch_conexant.obj patch_via.obj 18 FILE4 = 18 FILE4 = 19 19 FILE5 = 20 20 FILE6 = -
GPL/trunk/alsa-kernel/pci/intel8x0.c
r426 r445 41 41 /* for 440MX workaround */ 42 42 #include <asm/pgtable.h> 43 #ifndef TARGET_OS244 43 #include <asm/cacheflush.h> 45 #endif46 44 47 45 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); -
GPL/trunk/alsa-kernel/pci/ymfpci/ymfpci_main.c
r426 r445 85 85 if ((snd_ymfpci_readw(chip, reg) & 0x8000) == 0) 86 86 return 0; 87 #ifndef TARGET_OS288 87 schedule_timeout_uninterruptible(1); 89 #else90 set_current_state(TASK_UNINTERRUPTIBLE);91 schedule_timeout(1);92 #endif93 88 } while (time_before(jiffies, end_time)); 94 89 snd_printk(KERN_ERR "codec_ready: codec %i is not ready [0x%x]\n", secondary, snd_ymfpci_readw(chip, reg)); … … 794 789 add_wait_queue(&chip->interrupt_sleep, &wait); 795 790 atomic_inc(&chip->interrupt_sleep_count); 796 #ifndef TARGET_OS2797 791 schedule_timeout_uninterruptible(msecs_to_jiffies(50)); 798 #else799 set_current_state(TASK_UNINTERRUPTIBLE);800 schedule_timeout(msecs_to_jiffies(50));801 #endif802 803 792 remove_wait_queue(&chip->interrupt_sleep, &wait); 804 793 }
Note:
See TracChangeset
for help on using the changeset viewer.