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 c76c51943a96409b13a9b3f0237472eed8566f07 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..d2ee2fa 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; + u8 touchpad; /* enable Audio */ h8_set_audio_mute(0);
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

