diff options
author | Sven Schnelle <svens@stackframe.org> | 2011-04-04 10:56:52 +0000 |
---|---|---|
committer | Sven Schnelle <svens@stackframe.org> | 2011-04-04 10:56:52 +0000 |
commit | 4678914d65ebbd5f37428ab57ff20009db28270e (patch) | |
tree | 975ec6d5ea1da10da087940d22bf2db61e373963 /src/mainboard/lenovo/x60 | |
parent | b1d5d399f0594fdbb8b4dcf3fd569fe4beaff31f (diff) |
X60: deassert audio mute on boot
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Acked-by: Sven Schnelle <svens@stackframe.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6475 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/lenovo/x60')
-rw-r--r-- | src/mainboard/lenovo/x60/mainboard.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/lenovo/x60/mainboard.c b/src/mainboard/lenovo/x60/mainboard.c index b8e6a49ca1..6606a87695 100644 --- a/src/mainboard/lenovo/x60/mainboard.c +++ b/src/mainboard/lenovo/x60/mainboard.c @@ -74,6 +74,9 @@ static void mainboard_enable(device_t dev) ec_write(0x13, 0xff); ec_write(0x14, 0xf4); ec_write(0x15, 0x3c); + + /* enable Audio */ + ec_clr_bit(0x3a, 0); } struct chip_operations mainboard_ops = { |