fixed Audigi mixer switch (#187807)

This commit is contained in:
Martin Stransky 2006-04-06 08:52:39 +00:00
parent e8799fcbcb
commit 18dbe2fe6f
2 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
Summary: Advanced Linux Sound Architecture (ALSA) utilities Summary: Advanced Linux Sound Architecture (ALSA) utilities
Name: alsa-utils Name: alsa-utils
Version: 1.0.11 Version: 1.0.11
Release: 4.rc2 Release: 5.rc2
License: GPL License: GPL
Group: Applications/Multimedia Group: Applications/Multimedia
URL: http://www.alsa-project.org/ URL: http://www.alsa-project.org/
@ -68,8 +68,9 @@ install -m 755 alsacard %{buildroot}/bin
/usr/share/locale/* /usr/share/locale/*
%changelog %changelog
* Fri Mar 24 2006 Martin Stransky <stransky@redhat.com> 1.0.11-4.rc2 * Fri Mar 24 2006 Martin Stransky <stransky@redhat.com> 1.0.11-5.rc2
- fixed rules file (#186494) - fixed rules file (#186494)
- fixed Audigi mixer switch (#187807)
* Mon Feb 20 2006 Martin Stransky <stransky@redhat.com> 1.0.11-3.rc2 * Mon Feb 20 2006 Martin Stransky <stransky@redhat.com> 1.0.11-3.rc2
- removed autoreconf - removed autoreconf

View File

@ -83,7 +83,8 @@ CHANNEL channels[] = {
{"SPDIF Out", 0, 0, 0, 0, "snd-ca0106"}, {"SPDIF Out", 0, 0, 0, 0, "snd-ca0106"},
// Specific config for snd-emu10k1 // Specific config for snd-emu10k1
{"Audigy Analog/Digital Output Jack", 0,1,0, 0, "snd-emu10k1"}, // Removed (#187807)
// {"Audigy Analog/Digital Output Jack", 0,1,0, 0, "snd-emu10k1"},
{"IEC958 Optical Raw", 0, 0, 0, 0, "snd-emu10k1"}, {"IEC958 Optical Raw", 0, 0, 0, 0, "snd-emu10k1"},
{"Tone", 0, 0, 0, 0, "snd-emu10k1"}, {"Tone", 0, 0, 0, 0, "snd-emu10k1"},
@ -245,7 +246,6 @@ const char * get_card_driver(int index)
{ {
FILE *f = fopen(PROC_MODULES,"r"); FILE *f = fopen(PROC_MODULES,"r");
char tmp[100]; char tmp[100];
char *p_tmp;
int id; int id;
if(!f) if(!f)
@ -273,7 +273,6 @@ void set_volume(int volume)
void check_data(void) void check_data(void)
{ {
char *p_tmp;
int i; int i;
for (i = 0; i < sizeof(channels) / sizeof(channels[0]); i++) { for (i = 0; i < sizeof(channels) / sizeof(channels[0]); i++) {