Changeset 319
- Timestamp:
- Mar 25, 2008, 12:48:35 AM (17 years ago)
- Location:
- GPL/branches/uniaud-2.0
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified GPL/branches/uniaud-2.0/alsa-kernel/core/hwdep.c ¶
r305 r319 343 343 */ 344 344 345 #ifndef TARGET_OS2 345 346 static const struct file_operations snd_hwdep_f_ops = 347 #else 348 static struct file_operations snd_hwdep_f_ops = 349 #endif 346 350 { 347 351 #ifndef TARGET_OS2 -
TabularUnified GPL/branches/uniaud-2.0/alsa-kernel/core/misc.inc ¶
r305 r319 251 251 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 45) 252 252 253 static int work_caller(void *data)254 {255 struct work_struct *works = data;256 257 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0) && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 4, 8)258 reparent_to_init();259 #endif260 strcpy(current->comm, "snd"); /* FIXME: different names? */261 262 works->func(works->data);263 264 return 0;265 }266 267 253 #ifndef TARGET_OS2 268 254 int snd_compat_schedule_work(struct work_struct *works) … … 337 323 } 338 324 339 static int xworker_thread(void *data)340 {341 struct workqueue_struct *wq = data;342 343 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0) && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 4, 8)344 reparent_to_init();345 #endif346 strcpy(current->comm, wq->name);347 348 do {349 run_workqueue(wq);350 wait_event_interruptible(wq->more_work, !list_empty(&wq->worklist));351 } while (!signal_pending(current));352 353 complete_and_exit(&wq->thread_exited, 0);354 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 3, 0)355 return 0;356 #endif357 }358 359 325 struct workqueue_struct *snd_compat_create_workqueue(const char *name) 360 326 { -
TabularUnified GPL/branches/uniaud-2.0/alsa-kernel/core/pcm_native.c ¶
r307 r319 2860 2860 } 2861 2861 2862 #ifdef SND_PCM_USE_READV 2862 2863 #ifdef SND_PCM_USE_AIO 2863 2864 static ssize_t snd_pcm_aio_read(struct kiocb *iocb, const struct iovec *iov, … … 2949 2950 return result; 2950 2951 } 2952 #endif /* SND_PCM_USE_READV */ 2951 2953 2952 2954 static unsigned int snd_pcm_playback_poll(struct file *file, poll_table * wait) … … 3459 3461 */ 3460 3462 3463 #ifndef TARGET_OS2 3461 3464 const struct file_operations snd_pcm_f_ops[2] = { 3465 #else 3466 struct file_operations snd_pcm_f_ops[2] = { 3467 #endif 3462 3468 { 3463 3469 #ifndef TARGET_OS2 -
TabularUnified GPL/branches/uniaud-2.0/alsa-kernel/core/timer.c ¶
r305 r319 1946 1946 #endif 1947 1947 1948 #ifndef TARGET_OS2 1948 1949 static const struct file_operations snd_timer_f_ops = 1950 #else 1951 static struct file_operations snd_timer_f_ops = 1952 #endif 1949 1953 { 1950 1954 #ifndef TARGET_OS2 -
TabularUnified GPL/branches/uniaud-2.0/alsa-kernel/include/sound/pcm.h ¶
r305 r319 445 445 */ 446 446 447 #ifndef TARGET_OS2 447 448 extern const struct file_operations snd_pcm_f_ops[2]; 449 #else 450 extern struct file_operations snd_pcm_f_ops[2]; 451 #endif 448 452 449 453 int snd_pcm_new(struct snd_card *card, char *id, int device, -
TabularUnified GPL/branches/uniaud-2.0/alsa-kernel/pci/bt87x.c ¶
r305 r319 22 22 */ 23 23 24 #ifdef TARGET_OS2 25 #include <asm/bitops.h> 26 #endif 24 27 #include <linux/init.h> 25 28 #include <linux/interrupt.h> … … 41 44 "{Brooktree,Bt879}}"); 42 45 46 #ifndef TARGET_OS2 43 47 static int index[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -2}; /* Exclude the first card */ 44 48 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 49 #else 50 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 51 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 52 #endif 45 53 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */ 46 54 static int digital_rate[SNDRV_CARDS]; /* digital input rate */ … … 818 826 /* Pinnacle Studio PCTV rave */ 819 827 BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0xbd11, 0x1200, GENERIC), 820 { 828 {0} 821 829 }; 822 830 MODULE_DEVICE_TABLE(pci, snd_bt87x_ids); … … 847 855 int i; 848 856 const struct pci_device_id *supported; 849 857 #ifdef TARGET_OS2 858 u16 subsystem_vendor, subsystem_device; 859 #endif 860 861 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 13) 850 862 supported = pci_match_id(snd_bt87x_ids, pci); 863 #else 864 supported = pci_match_device(snd_bt87x_ids, pci); 865 #endif 851 866 if (supported && supported->driver_data > 0) 852 867 return supported->driver_data; 853 868 869 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 3, 0) 870 subsystem_vendor = pci->subsystem_vendor; 871 subsystem_device = pci->subsystem_device; 872 #else 873 pci_read_config_word(pci, PCI_SUBSYSTEM_VENDOR_ID, &subsystem_vendor); 874 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &subsystem_device); 875 #endif 854 876 for (i = 0; i < ARRAY_SIZE(blacklist); ++i) 877 #ifndef TARGET_OS2 855 878 if (blacklist[i].subvendor == pci->subsystem_vendor && 856 879 blacklist[i].subdevice == pci->subsystem_device) { 880 #else 881 if (blacklist[i].subvendor == subsystem_vendor && 882 blacklist[i].subdevice == subsystem_device) { 883 #endif 857 884 snd_printdd(KERN_INFO "card %#04x-%#04x:%#04x has no audio\n", 885 #ifndef TARGET_OS2 858 886 pci->device, pci->subsystem_vendor, pci->subsystem_device); 887 #else 888 pci->device, subsystem_vendor, subsystem_device); 889 #endif 859 890 return -EBUSY; 860 891 } 861 892 862 893 snd_printk(KERN_INFO "unknown card %#04x-%#04x:%#04x\n", 894 #ifndef TARGET_OS2 863 895 pci->device, pci->subsystem_vendor, pci->subsystem_device); 896 #else 897 pci->device, subsystem_vendor, subsystem_device); 898 #endif 864 899 snd_printk(KERN_DEBUG "please mail id, board name, and, " 865 900 "if it works, the correct digital_rate option to " … … 965 1000 BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, PCI_ANY_ID, PCI_ANY_ID, UNKNOWN), 966 1001 BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_879, PCI_ANY_ID, PCI_ANY_ID, UNKNOWN), 967 { 1002 {0} 968 1003 }; 969 1004 -
TabularUnified GPL/branches/uniaud-2.0/alsa-kernel/pci/makefile.os2 ¶
r313 r319 34 34 FILE1 = pci_iomap_compat.obj ens1370.obj ens1371.obj cs4281.obj es1938.obj 35 35 FILE2 = es1968.obj intel8x0.obj maestro3.obj via82xx.obj 36 FILE3 = fm801.obj atiixp.obj cmipci.obj als4000.obj 36 FILE3 = fm801.obj atiixp.obj cmipci.obj als4000.obj bt87x.obj 37 37 FILE4 = 38 38 FILE5 = -
TabularUnified GPL/branches/uniaud-2.0/include/linux/kernel.h ¶
r123 r319 98 98 }; 99 99 100 static void complete_and_exit(struct completion *, long); 101 100 102 #endif -
TabularUnified GPL/branches/uniaud-2.0/lib32/ossidc.cpp ¶
r312 r319 259 259 fnCardExitCall[nrCardsDetected] = name_module_exit(alsa_card_azx_exit); 260 260 } 261 #if 0262 261 if((ForceCard == CARD_NONE || ForceCard == CARD_BT87X) && 263 262 nrCardsDetected < (OSS32_MAX_AUDIOCARDS-1) && call_module_init(alsa_card_bt87x_init) == 0) … … 265 264 fnCardExitCall[nrCardsDetected] = name_module_exit(alsa_card_bt87x_exit); 266 265 } 267 #endif268 266 #endif 269 267 fStrategyInit = FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.