[Isisalsa-devel] isis es1968.c, 1.46, 1.47 .cdtproject, 1.2, 1.3 .cvsignore, 1.4, 1.5
Status: Inactive
Brought to you by:
jeanseb
|
From: Jean-Sébastien V. <je...@us...> - 2007-06-03 20:17:51
|
Update of /cvsroot/isisalsa/isis In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6645 Modified Files: es1968.c .cdtproject .cvsignore Log Message: printk correction and test is ok. Index: .cvsignore =================================================================== RCS file: /cvsroot/isisalsa/isis/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** .cvsignore 31 Dec 2005 15:00:51 -0000 1.4 --- .cvsignore 3 Jun 2007 20:17:50 -0000 1.5 *************** *** 5,6 **** --- 5,8 ---- *.cmd dmesg + .tmp_versions/ + *.symvers Index: .cdtproject =================================================================== RCS file: /cvsroot/isisalsa/isis/.cdtproject,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cdtproject 5 Nov 2004 12:09:43 -0000 1.2 --- .cdtproject 3 Jun 2007 20:17:50 -0000 1.3 *************** *** 3,6 **** <cdtproject id="org.eclipse.cdt.make.core.make"> ! <extension point="org.eclipse.cdt.core.BinaryParser" id="org.eclipse.cdt.core.ELF"/> </cdtproject> --- 3,12 ---- <cdtproject id="org.eclipse.cdt.make.core.make"> ! <extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/> ! <data> ! <item id="org.eclipse.cdt.core.pathentry"> ! <pathentry kind="src" path=""/> ! <pathentry kind="out" path=""/> ! </item> ! </data> </cdtproject> Index: es1968.c =================================================================== RCS file: /cvsroot/isisalsa/isis/es1968.c,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** es1968.c 15 May 2007 09:56:28 -0000 1.46 --- es1968.c 3 Jun 2007 20:17:50 -0000 1.47 *************** *** 2686,2690 **** case TYPE_MAESTRO2E: #ifdef SND_ISIS ! strcpy(card->driver, "ES1978"); strcpy(card->shortname, "Guillemot ISIS Maxi sound"); #else --- 2686,2690 ---- case TYPE_MAESTRO2E: #ifdef SND_ISIS ! strcpy(card->driver, "ISIS"); strcpy(card->shortname, "Guillemot ISIS Maxi sound"); #else *************** *** 2705,2709 **** if ((err = snd_es1968_pcm(chip, 0)) < 0) { snd_card_free(card); - printk(KERN_ERR "test 2 \n"); return err; } --- 2705,2708 ---- *************** *** 2711,2715 **** if ((err = snd_es1968_mixer(chip)) < 0) { snd_card_free(card); - printk(KERN_ERR "test 3 \n"); return err; } --- 2710,2713 ---- *************** *** 2749,2752 **** --- 2747,2751 ---- if ((err = snd_card_register(card)) < 0) { snd_card_free(card); + printk("%d \n", err); return err; } |