Date: Mon, 06 Mar 2006 13:59:19 +0200 From: Alexandr Krivulya <admin@marcom-group.com> Cc: freebsd-multimedia@freebsd.org Subject: Re: low sound volume with ich6 Message-ID: <440C2417.2090700@marcom-group.com> In-Reply-To: <43F719F4.8000006@marcom-group.com> References: <43F719F4.8000006@marcom-group.com>
next in thread | previous in thread | raw e-mail | index | archive | help
The problem has been solved by adding this line to ich.c
/*
* Turn on inverted external amplifier sense flags for few
* 'special' boards.
*/
switch (subdev) {
case 0x202f161f: /* Gateway 7326GZ */
case 0x203a161f: /* Gateway 4028GZ */
case 0x8144104d: /* Sony VAIO PCG-TR* */
case 0x8197104d: /* Sony S1XP */
/*************************************************************************************/
case 0x204c161f: /* Kvazar-Micro Senator 3592XT */
/*************************************************************************************/
ac97_setflags(sc->codec, ac97_getflags(sc->codec) |
AC97_F_EAPD_INV);
break;
default:
break;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?440C2417.2090700>
