[Isisalsa-devel] isis .cvsignore,1.5,1.6 sam9707.c,1.9,1.10
Status: Inactive
Brought to you by:
jeanseb
|
From: Jean-Sébastien V. <je...@us...> - 2007-07-28 12:20:36
|
Update of /cvsroot/isisalsa/isis In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv10196 Modified Files: .cvsignore sam9707.c Log Message: removale of .tmp_versions noise Index: .cvsignore =================================================================== RCS file: /cvsroot/isisalsa/isis/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** .cvsignore 3 Jun 2007 20:17:50 -0000 1.5 --- .cvsignore 28 Jul 2007 12:20:36 -0000 1.6 *************** *** 7,8 **** --- 7,9 ---- .tmp_versions/ *.symvers + .tmp_versions Index: sam9707.c =================================================================== RCS file: /cvsroot/isisalsa/isis/sam9707.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** sam9707.c 15 May 2007 09:56:28 -0000 1.9 --- sam9707.c 28 Jul 2007 12:20:36 -0000 1.10 *************** *** 1190,1201 **** * Setting up clock source */ ! outw(0x019B, chip->io_port + 0x64); // set GPIO mask ! outw(0x0e64, chip->io_port + 0x68); // set GPIO dir value = inw(chip->io_port + 0x60); //read the GPIO ! value &= 0x000f; value |= 0x0024; outw(value, chip->io_port + 0x60); // write new value to GPIO value = inw(chip->io_port + 0x64); //read the GPIO mask ! value |= 0x0fff; outw(0x019B, chip->io_port + 0x64); // set GPIO mask snd_printk("Clock source set\n"); --- 1190,1206 ---- * Setting up clock source */ ! value = inw(chip->io_port + 0x64); //read the GPIO mask ! value &= 0x19b; ! outw(0x019B, value); // set GPIO mask ! value = inw(chip->io_port + 0x64); //read the GPIO dir ! value &= 0xf000; ! value |= 0x0e64; ! outw(0x0e64,value); // set GPIO dir value = inw(chip->io_port + 0x60); //read the GPIO ! value &= 0xf000; value |= 0x0024; outw(value, chip->io_port + 0x60); // write new value to GPIO value = inw(chip->io_port + 0x64); //read the GPIO mask ! value |= 0xf000; outw(0x019B, chip->io_port + 0x64); // set GPIO mask snd_printk("Clock source set\n"); |