[alsa-cvslog] CVS: alsa-kernel/include version.h,1.24,1.25

2003-10-01 Thread Jaroslav Kysela
Update of /cvsroot/alsa/alsa-kernel/include
In directory sc8-pr-cvs1:/tmp/cvs-serv20244/alsa-kernel/include

Modified Files:
version.h 
Log Message:
0.9.7a

Index: version.h
===
RCS file: /cvsroot/alsa/alsa-kernel/include/version.h,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- version.h   25 Sep 2003 18:55:43 -  1.24
+++ version.h   1 Oct 2003 08:41:15 -   1.25
@@ -1,3 +1,3 @@
-/* include/version.h.  Generated automatically by configure.  */
-#define CONFIG_SND_VERSION 0.9.7
+/* include/version.h.  Generated by configure.  */
+#define CONFIG_SND_VERSION 0.9.7a
 #define CONFIG_SND_DATE 



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog


[alsa-cvslog] CVS: alsa-driver configure.in,1.191,1.192

2003-10-01 Thread Jaroslav Kysela
Update of /cvsroot/alsa/alsa-driver
In directory sc8-pr-cvs1:/tmp/cvs-serv20244/alsa-driver

Modified Files:
configure.in 
Log Message:
0.9.7a

Index: configure.in
===
RCS file: /cvsroot/alsa/alsa-driver/configure.in,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- configure.in25 Sep 2003 18:55:42 -  1.191
+++ configure.in1 Oct 2003 08:41:15 -   1.192
@@ -4,7 +4,7 @@
 
 AC_INIT(acore/sound.patch)
 AC_PREFIX_DEFAULT(/usr)
-CONFIG_SND_VERSION=0.9.7
+CONFIG_SND_VERSION=0.9.7a
 
 dnl Checks for programs.
 AC_PROG_CC



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog


[alsa-cvslog] CVS: alsa-kernel/pci/ac97 ac97_codec.c,1.104,1.105

2003-10-01 Thread Takashi Iwai
Update of /cvsroot/alsa/alsa-kernel/pci/ac97
In directory sc8-pr-cvs1:/tmp/cvs-serv27173/ac97

Modified Files:
ac97_codec.c 
Log Message:
- fixed typos in the last change to snd_ac97_set_rate().
  the correct flag to check is ac97-scaps.
- removed dxs_fixed=1 on VIA8233A (for SPDIF).
- added quirks for ASUS A7V8-X and MSI KT4V.



Index: ac97_codec.c
===
RCS file: /cvsroot/alsa/alsa-kernel/pci/ac97/ac97_codec.c,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ac97_codec.c30 Sep 2003 13:54:33 -  1.104
+++ ac97_codec.c1 Oct 2003 09:25:50 -   1.105
@@ -2091,11 +2091,11 @@
return -EINVAL;
break;
case AC97_PCM_SURR_DAC_RATE:
-   if (! (ac97-ext_id  AC97_SCAP_SURROUND_DAC))
+   if (! (ac97-scaps  AC97_SCAP_SURROUND_DAC))
return -EINVAL;
break;
case AC97_PCM_LFE_DAC_RATE:
-   if (! (ac97-ext_id  AC97_SCAP_CENTER_LFE_DAC))
+   if (! (ac97-scaps  AC97_SCAP_CENTER_LFE_DAC))
return -EINVAL;
break;
case AC97_SPDIF:



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog


[alsa-cvslog] CVS: alsa-kernel/pci via82xx.c,1.53,1.54

2003-10-01 Thread Takashi Iwai
Update of /cvsroot/alsa/alsa-kernel/pci
In directory sc8-pr-cvs1:/tmp/cvs-serv27173

Modified Files:
via82xx.c 
Log Message:
- fixed typos in the last change to snd_ac97_set_rate().
  the correct flag to check is ac97-scaps.
- removed dxs_fixed=1 on VIA8233A (for SPDIF).
- added quirks for ASUS A7V8-X and MSI KT4V.



Index: via82xx.c
===
RCS file: /cvsroot/alsa/alsa-kernel/pci/via82xx.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- via82xx.c   30 Sep 2003 10:12:09 -  1.53
+++ via82xx.c   1 Oct 2003 09:25:50 -   1.54
@@ -1522,6 +1522,12 @@
.name = ASRock K7VT2,
.type = AC97_TUNE_HP_ONLY
},
+   {
+   .vendor = 0x1043,
+   .device = 0x80a1,
+   .name = ASUS A7V8-X,
+   .type = AC97_TUNE_SWAP_SURROUND
+   },
{ } /* terminator */
 };
 
@@ -1969,6 +1975,8 @@
static struct dxs_whitelist whitelist[] = {
{ .vendor = 0x1019, .device = 0x0996, .action = VIA_DXS_48K },
{ .vendor = 0x1297, .device = 0xc160, .action = VIA_DXS_ENABLE }, /* 
Shuttle SK41G */
+   { .vendor = 0x1043, .device = 0x80a1, .action = VIA_DXS_ENABLE }, /* 
ASUS A7V8-X */
+   { .vendor = 0x1462, .device = 0x7120, .action = VIA_DXS_ENABLE }, /* 
MSI KT4V */
{ } /* terminator */
};
struct dxs_whitelist *w;
@@ -2073,7 +2081,7 @@
if (chip_type == TYPE_VIA8233A) {
if ((err = snd_via8233a_pcm_new(chip))  0)
goto __error;
-   chip-dxs_fixed = 1; /* use 48k for DXS #3 */
+   // chip-dxs_fixed = 1; /* FIXME: use 48k for DXS #3? */
} else {
if ((err = snd_via8233_pcm_new(chip))  0)
goto __error;



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog