Dear list, Sven Schnelle ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5.
You will also find it attached for your convenience. Regards, gerrit
commit 7effe0126aa0585b04fa3bec1d5d97b412c6a7fa Author: Sven Schnelle <[email protected]> Date: Sun Jun 5 20:43:04 2011 +0200 T60: fix touchpad option Code used 'int' as return type, but the cmos option is only one bit. get_option returned with the value in bit 0-7, but all remaining bits were left unitialized by get_option(). fix this by using char as type. Change-Id: I60e609164277380f936f66c99ef9508fa6a6b67c Signed-off-by: Sven Schnelle <[email protected]> diff --git a/src/mainboard/lenovo/t60/mainboard.c b/src/mainboard/lenovo/t60/mainboard.c index d6321d2..6e394bd 100644 --- a/src/mainboard/lenovo/t60/mainboard.c +++ b/src/mainboard/lenovo/t60/mainboard.c @@ -39,7 +39,7 @@ static void mainboard_enable(device_t dev) { device_t dev0, idedev; - int touchpad; + char touchpad; /* enable Audio */ h8_set_audio_mute(0);
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

