[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1362289680-3527-1-git-send-email-mc74hc00@gmail.com>
Date: Sun, 3 Mar 2013 14:48:00 +0900
From: Takahisa Tanaka <mc74hc00@...il.com>
To: linux-watchdog@...r.kernel.org
Cc: Wim Van Sebroeck <wim@...ana.be>,
Paul Menzel <paulepanter@...rs.sourceforge.net>,
Arkadiusz Miskiewicz <arekm@...en.pl>,
Bjorn Helgaas <bhelgaas@...gle.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Jonathan Nieder <jrnieder@...il.com>,
linux-kernel@...r.kernel.org,
Florian Mickler <florian@...kler.org>,
Joseph Salisbury <joseph.salisbury@...onical.com>,
Joseph Salisbury <josephtsalisbury@...il.com>,
Takahisa Tanaka <mc74hc00@...il.com>
Subject: [PATCH] sp5100_tco: Fix the AcpiMmioSel bitmask value
The AcpiMmioSel bit is the bit1 in AcpiMmioEn register, but, current
sp5100_tco driver was using bit2.
The sp5100_tco driver expects zero as a value of AcpiMmioSel (bit1).
fortunately, The problem didn't occur by this typo, because the default
value of misused bit2 is zero. However, the sp5100_tco driver should use
the correct bitmask value.
Signed-off-by: Takahisa Tanaka <mc74hc00@...il.com>
---
drivers/watchdog/sp5100_tco.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/watchdog/sp5100_tco.h b/drivers/watchdog/sp5100_tco.h
index 71594a0..2b28c00 100644
--- a/drivers/watchdog/sp5100_tco.h
+++ b/drivers/watchdog/sp5100_tco.h
@@ -57,7 +57,7 @@
#define SB800_PM_WATCHDOG_DISABLE (1 << 2)
#define SB800_PM_WATCHDOG_SECOND_RES (3 << 0)
#define SB800_ACPI_MMIO_DECODE_EN (1 << 0)
-#define SB800_ACPI_MMIO_SEL (1 << 2)
+#define SB800_ACPI_MMIO_SEL (1 << 1)
#define SB800_PM_WDT_MMIO_OFFSET 0xB00
--
1.8.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists