Changeset 211
- Timestamp:
- Jul 14, 2007, 5:00:41 AM (18 years ago)
- Location:
- GPL/trunk
- Files:
-
- 14 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/alsa-kernel/core/control.c
r129 r211 1293 1293 { 1294 1294 #ifdef LINUX_2_3 1295 THIS_MODULE,1295 .owner= THIS_MODULE, 1296 1296 #endif 1297 0, 1298 snd_ctl_read, 1299 0,0, 1300 snd_ctl_poll, 1301 snd_ctl_ioctl, 1302 0, 1303 snd_ctl_open,0, 1304 snd_ctl_release, 1305 0, 1306 snd_ctl_fasync, 1307 0,0,0 1297 .read= snd_ctl_read, 1298 .poll= snd_ctl_poll, 1299 .ioctl= snd_ctl_ioctl, 1300 .open= snd_ctl_open, 1301 .release= snd_ctl_release, 1302 .fasync= snd_ctl_fasync, 1308 1303 }; 1309 1304 -
GPL/trunk/alsa-kernel/core/info.c
r129 r211 505 505 { 506 506 #ifdef LINUX_2_3 507 THIS_MODULE, 508 #endif 509 snd_info_entry_llseek, 510 snd_info_entry_read, 511 snd_info_entry_write, 512 0, 513 snd_info_entry_poll, 514 snd_info_entry_ioctl, 515 snd_info_entry_mmap, 516 0, 517 // snd_info_entry_open, 518 0, 519 snd_info_entry_release, 520 0,0,0,0,0 507 .owner= THIS_MODULE, 508 #endif 509 .llseek= snd_info_entry_llseek, 510 .read= snd_info_entry_read, 511 .write= snd_info_entry_write, 512 .poll= snd_info_entry_poll, 513 .ioctl= snd_info_entry_ioctl, 514 .mmap= snd_info_entry_mmap, 515 // .open= snd_info_entry_open, 516 .release= snd_info_entry_release, 521 517 }; 522 518 #else -
GPL/trunk/alsa-kernel/core/pcm_lib.c
r34 r211 897 897 898 898 #ifdef DEBUG 899 //dprintf(("snd_pcm_hw_rule_add. func() = %x, var = %d",func, var));899 dprintf(("snd_pcm_hw_rule_add. func() = %x, var = %d",func, var)); 900 900 #endif 901 901 if (constrs->rules_num >= constrs->rules_all) { -
GPL/trunk/alsa-kernel/core/sound.c
r129 r211 165 165 struct file_operations snd_fops = 166 166 { 167 0,0,0,0,0,0,0, 168 snd_open,0,0,0,0,0,0,0 167 .open= snd_open 169 168 }; 170 169 #else -
GPL/trunk/include/linux/sched.h
r130 r211 1 1 #ifndef _LINUX_SCHED_H 2 2 #define _LINUX_SCHED_H 3 4 #include <dbgos2.h> 3 5 4 6 #include <asm/param.h> /* for HZ */
Note:
See TracChangeset
for help on using the changeset viewer.