From: Wim Van Sebroeck Date: Fri, 11 May 2007 18:59:24 +0000 (+0000) Subject: [WATCHDOG] iTCO_wdt.c - fix ACPI Base register X-Git-Tag: v2.6.22-rc1~18^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d4804b31f91cfbcff6d62af0bc09a893a1c8ae0;p=pandora-kernel.git [WATCHDOG] iTCO_wdt.c - fix ACPI Base register The ACPI/PM base I/O address which is the base for the TCO registers is defined as bits [15:7] (highest bit is 31, lowest is 0) The code however only reads bits [14:7]. So base_address &= 0x00007f80; needs to be: base_address &= 0x0000ff80; This patch fixes this. Signed-off-by: Ate Wijma Signed-off-by: Wim Van Sebroeck --- Reading git-diff-tree failed