Changeset 111 for GPL/trunk/alsa-kernel
- Timestamp:
- May 24, 2007, 6:37:10 AM (18 years ago)
- Location:
- GPL/trunk/alsa-kernel
- Files:
-
- 3 added
- 4 edited
-
core/misc.c (modified) (4 diffs)
-
makefile.os2 (modified) (1 diff)
-
pci/emu10k1/emu10k1_main.c (modified) (1 diff)
-
pci/emu10k1/tina2.h (added)
-
pci/hda/patch_analog.c (modified) (2 diffs)
-
pci/hda/patch_conexant.c (added)
-
pci/hda/patch_via.c (added)
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/alsa-kernel/core/misc.c
r86 r111 21 21 22 22 #include <sound/driver.h> 23 #include < sound/firmware.h>23 #include <linux/firmware.h> 24 24 int snd_task_name(struct task_struct *task, char *name, size_t size) 25 25 { … … 541 541 } 542 542 543 #if 0 543 544 void flush_workqueue(struct workqueue_struct *wq) 544 545 { … … 561 562 } 562 563 } 564 #endif 563 565 564 566 void destroy_workqueue(struct workqueue_struct *wq) 565 567 { 568 #if 0 566 569 flush_workqueue(wq); 567 #if 0568 570 kill_proc(wq->task_pid, SIGKILL, 1); 569 571 if (wq->task_pid >= 0) … … 686 688 } 687 689 688 int request_firmware(const struct firmware **fw, const char *name) 690 int request_firmware(const struct firmware **fw, const char *name, 691 struct device *device) 689 692 { 690 693 struct firmware *firmware; -
GPL/trunk/alsa-kernel/makefile.os2
r32 r111 60 60 @cd drivers 61 61 @wmake $(NMAKEOPTS) clean 62 @cd .. 62 @cd .. 63 63 @echo CLEANING isa 64 64 @cd isa -
GPL/trunk/alsa-kernel/pci/emu10k1/emu10k1_main.c
r84 r111 39 39 #include <sound/core.h> 40 40 #include <sound/emu10k1.h> 41 #include < sound/firmware.h>41 #include <linux/firmware.h> 42 42 #include "p16v.h" 43 43 #include "tina2.h" -
GPL/trunk/alsa-kernel/pci/hda/patch_analog.c
r88 r111 2619 2619 if (is_rev2(codec)) 2620 2620 snd_printk(KERN_INFO "patch_analog: AD1988A rev.2 is detected, enable workarounds\n"); 2621 2621 //paul 2622 snd_printk(KERN_INFO "patch_analog: Vendor Id: 0x%x\n", codec->vendor_id); 2623 snd_printk(KERN_INFO "patch_analog: Subsystem Id: 0x%x\n", codec->subsystem_id); 2624 snd_printk(KERN_INFO "patch_analog: Revision Id: 0x%x\n", codec->revision_id); 2625 snd_printk(KERN_INFO "patch_analog: Model Name: %s\n", codec->bus->modelname); 2626 //endpaul 2622 2627 board_config = snd_hda_check_board_config(codec, AD1988_MODEL_LAST, 2623 2628 ad1988_models, NULL); … … 2638 2643 } 2639 2644 } 2640 2645 //paul 2646 snd_printk(KERN_INFO "patch_analog: board_config: %d\n", board_config); 2647 board_config = AD1988_3STACK_DIG; 2648 snd_printk(KERN_INFO "patch_analog: kludged board_config: %d\n", board_config); 2649 //endpaul 2641 2650 switch (board_config) { 2642 2651 case AD1988_6STACK:
Note:
See TracChangeset
for help on using the changeset viewer.
