From: Sven Schnelle Date: Mon, 4 Apr 2011 10:56:52 +0000 (+0000) Subject: X60: deassert audio mute on boot X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=4678914d65ebbd5f37428ab57ff20009db28270e;p=coreboot.git X60: deassert audio mute on boot Signed-off-by: Sven Schnelle Acked-by: Sven Schnelle git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6475 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- diff --git a/src/mainboard/lenovo/x60/mainboard.c b/src/mainboard/lenovo/x60/mainboard.c index b8e6a49ca..6606a8769 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 = {