Changeset 123
- Timestamp:
 - Jun 10, 2007, 12:23:46 AM (18 years ago)
 - Location:
 - GPL/trunk
 - Files:
 - 
      
- 5 edited
 
- 
          
  alsa-kernel/core/control.c (modified) (1 diff)
 - 
          
  alsa-kernel/core/info.c (modified) (1 diff)
 - 
          
  alsa-kernel/core/misc.c (modified) (1 diff)
 - 
          
  alsa-kernel/include/sound/driver.h (modified) (1 diff)
 - 
          
  include/linux/kernel.h (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
GPL/trunk/alsa-kernel/core/control.c
r118 r123 957 957 } 958 958 959 #if 0 /* Uniaud: Not used until Alsa version 1.0.9 */960 static int snd_ctl_elem_add_user(struct snd_ctl_file *file,961 struct snd_ctl_elem_info __user *_info, int replace)962 {963 struct snd_ctl_elem_info info;964 if (copy_from_user(&info, _info, sizeof(info)))965 return -EFAULT;966 return snd_ctl_elem_add(file, &info, replace);967 }968 #endif /* Uniaud */969 970 959 static int snd_ctl_elem_remove(struct snd_ctl_file *file, struct snd_ctl_elem_id *_id) 971 960 {  - 
      
GPL/trunk/alsa-kernel/core/info.c
r119 r123 28 28 #include <linux/devfs_fs_kernel.h> 29 29 #endif 30 31 #define min(x,y) (x < y ? x : y )32 30 33 31 /*  - 
      
GPL/trunk/alsa-kernel/core/misc.c
r111 r123 575 575 } 576 576 577 static int xworker_thread(void *data)578 {579 struct workqueue_struct *wq = data;580 581 strcpy(current->comm, wq->name); /* FIXME: different names? */582 583 do {584 run_workqueue(wq);585 #if 0586 wait_event_interruptible(wq->more_work, !list_empty(&wq->worklist));587 #endif588 } while (!signal_pending(current));589 #if 0590 complete_and_exit(&wq->thread_exited, 0);591 #endif592 }593 594 577 struct workqueue_struct *create_workqueue(const char *name) 595 578 {  - 
      
GPL/trunk/alsa-kernel/include/sound/driver.h
r86 r123 568 568 int snd_device_register(struct snd_card *card, void *device_data); 569 569 int snd_device_register_all(struct snd_card *card); 570 int snd_device_disconnect_all(struct snd_card *card); 570 571 int snd_device_free(struct snd_card *card, void *device_data); 571 572 int snd_device_free_all(struct snd_card *card, snd_device_cmd_t cmd);  - 
      
GPL/trunk/include/linux/kernel.h
r122 r123 10 10 #ifdef __KERNEL__ 11 11 12 #include <stdlib.h> 12 13 #include <stdarg.h> 13 14 //#include <linux/linkage.h>  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  