diff options
| author | Ariff Abdullah <ariff@FreeBSD.org> | 2007-06-08 17:33:38 +0000 |
|---|---|---|
| committer | Ariff Abdullah <ariff@FreeBSD.org> | 2007-06-08 17:33:38 +0000 |
| commit | e68d8dd9daee13be3fdfb517829ad25540fbe49d (patch) | |
| tree | 7f00916c7a5e30f5bfd23abb03a6751e9f840f84 /sys/dev/sound | |
| parent | e7983bac9df0747498fb1e838597f4fbc7e638ca (diff) | |
Notes
Diffstat (limited to 'sys/dev/sound')
| -rw-r--r-- | sys/dev/sound/pcm/ac97_patch.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/sound/pcm/ac97_patch.c b/sys/dev/sound/pcm/ac97_patch.c index e98189f02259..dc4843f6bf81 100644 --- a/sys/dev/sound/pcm/ac97_patch.c +++ b/sys/dev/sound/pcm/ac97_patch.c @@ -90,6 +90,15 @@ void alc655_patch(struct ac97_info* codec) case 0x03511462: /* MSI L725 */ ac97_wrcd(codec, 0x7a, ac97_rdcd(codec, 0x7a) & 0xfffd); break; + case 0x10ca1734: + /* + * Amilo Pro V2055 with ALC655 has phone out by default + * disabled (surround on), leaving us only with internal + * speakers. This should really go to mixer. We write the + * Data Flow Control reg. + */ + ac97_wrcd(codec, 0x6a, ac97_rdcd(codec, 0x6a) | 0x0001); + break; default: break; } |
