public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/8] mfd: lpc_ich: Fix ACPI enable bitmask
@ 2014-03-10 21:34 Peter Tyser
  2014-03-10 21:34 ` [PATCH 2/8] mfd: lpc_ich: Only configure watchdog or GPIO when present Peter Tyser
                   ` (9 more replies)
  0 siblings, 10 replies; 39+ messages in thread
From: Peter Tyser @ 2014-03-10 21:34 UTC (permalink / raw)
  To: linux-kernel
  Cc: Peter Tyser, Guenter Roeck, James Ralston, Samuel Ortiz,
	Lee Jones

The original bitmask of 0x10 was incorrect and would result in a write
to a reserved read-only bit instead of enabling the ACPI I/O
region.  Update it to the proper value of 0x80.

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Tested-by: Rajat Jain <rajatjain@juniper.net>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: James Ralston <james.d.ralston@intel.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Lee Jones <lee.jones@linaro.org>
---
 drivers/mfd/lpc_ich.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c
index be93fa2..be10ad4 100644
--- a/drivers/mfd/lpc_ich.c
+++ b/drivers/mfd/lpc_ich.c
@@ -759,7 +759,7 @@ static void lpc_ich_enable_acpi_space(struct pci_dev *dev)
 	u8 reg_save;
 
 	pci_read_config_byte(dev, priv->acpi.ctrl, &reg_save);
-	pci_write_config_byte(dev, priv->acpi.ctrl, reg_save | 0x10);
+	pci_write_config_byte(dev, priv->acpi.ctrl, reg_save | 0x80);
 	priv->acpi.save = reg_save;
 }
 
-- 
1.7.7.GIT


^ permalink raw reply related	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2014-03-19 21:47 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-10 21:34 [PATCH 1/8] mfd: lpc_ich: Fix ACPI enable bitmask Peter Tyser
2014-03-10 21:34 ` [PATCH 2/8] mfd: lpc_ich: Only configure watchdog or GPIO when present Peter Tyser
2014-03-11  0:59   ` Guenter Roeck
2014-03-13 22:46   ` Lee Jones
2014-03-10 21:34 ` [PATCH 3/8] mfd: lpc_ich: Remove lpc_ich_cfg struct use Peter Tyser
2014-03-11  0:59   ` Guenter Roeck
2014-03-13 22:46   ` Lee Jones
2014-03-10 21:34 ` [PATCH 4/8] mfd: lpc_ich: Add support for iTCO v3 Peter Tyser
2014-03-11  1:02   ` Guenter Roeck
2014-03-13 22:47   ` Lee Jones
2014-03-15 20:04   ` Wim Van Sebroeck
2014-03-10 21:34 ` [PATCH 5/8] watchdog: iTCO_wdt: Add support for v3 silicon Peter Tyser
2014-03-11  1:06   ` Guenter Roeck
2014-03-13 22:47   ` Lee Jones
2014-03-15 20:03   ` Wim Van Sebroeck
2014-03-18  8:28     ` Lee Jones
2014-03-18 13:59       ` Wim Van Sebroeck
2014-03-18 20:36         ` Lee Jones
2014-03-10 21:34 ` [PATCH 6/8] mfd: lpc_ich: Change Avoton to iTCO v3 Peter Tyser
2014-03-11  1:07   ` Guenter Roeck
2014-03-13 22:48   ` Lee Jones
2014-03-15 20:04   ` Wim Van Sebroeck
2014-03-18  8:27     ` Lee Jones
2014-03-18 14:00       ` Wim Van Sebroeck
2014-03-10 21:34 ` [PATCH 7/8] mfd: lpc_ich: Add support for NM10 GPIO Peter Tyser
2014-03-11  1:08   ` Guenter Roeck
2014-03-13 22:48   ` Lee Jones
2014-03-10 21:34 ` [PATCH 8/8] mfd: lpc_ich: Add support for Intel Bay Trail SoC Peter Tyser
2014-03-11  1:09   ` Guenter Roeck
2014-03-13 22:49   ` Lee Jones
2014-03-11  0:59 ` [PATCH 1/8] mfd: lpc_ich: Fix ACPI enable bitmask Guenter Roeck
2014-03-13 15:16 ` Guenter Roeck
2014-03-13 15:25   ` Lee Jones
2014-03-13 22:50     ` Lee Jones
2014-03-13 23:04       ` Guenter Roeck
2014-03-14 10:29         ` Lee Jones
2014-03-19 17:17           ` Guenter Roeck
2014-03-19 21:47             ` Lee Jones
2014-03-13 22:45 ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox