linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Len Brown <len.brown@intel.com>
To: linux-acpi@vger.kernel.org
Cc: Robert Moore <robert.moore@intel.com>,
	Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>,
	Len Brown <len.brown@intel.com>
Subject: [PATCH 42/65] ACPICA: Remove obsolete Flags parameter.
Date: Fri, 24 Nov 2006 02:18:52 -0500	[thread overview]
Message-ID: <11643528032291-git-send-email-len.brown@intel.com> (raw)
Message-ID: <6ccc4ddcc4790ad35ecc1b433d693cd9a356d8b1.1164352294.git.len.brown@intel.com> (raw)
In-Reply-To: <11643528022585-git-send-email-len.brown@intel.com>
In-Reply-To: <410c2f0190f74c35505beda6ff3f2da7819f8bac.1164352285.git.len.brown@intel.com>

From: Robert Moore <robert.moore@intel.com>

Remove flags parameter for acpi_{get,set}_register().
It is no longer necessary now that these functions use a
spinlock for mutual exclusion.

Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
---
 arch/i386/kernel/cpu/cpufreq/longhaul.c |    9 +++------
 drivers/acpi/events/evevent.c           |    8 +++-----
 drivers/acpi/events/evmisc.c            |    2 +-
 drivers/acpi/events/evxfevnt.c          |   12 ++++++------
 drivers/acpi/hardware/hwacpi.c          |    3 +--
 drivers/acpi/hardware/hwregs.c          |   18 +++++-------------
 drivers/acpi/hardware/hwsleep.c         |   22 ++++++++--------------
 drivers/acpi/pci_link.c                 |    2 +-
 drivers/acpi/processor_idle.c           |   21 +++++++--------------
 include/acpi/achware.h                  |    2 +-
 include/acpi/acpixf.h                   |    4 ++--
 11 files changed, 38 insertions(+), 65 deletions(-)

diff --git a/arch/i386/kernel/cpu/cpufreq/longhaul.c b/arch/i386/kernel/cpu/cpufreq/longhaul.c
index 1797ce7..43fcee4 100644
--- a/arch/i386/kernel/cpu/cpufreq/longhaul.c
+++ b/arch/i386/kernel/cpu/cpufreq/longhaul.c
@@ -245,8 +245,7 @@ static void longhaul_setstate(unsigned i
 
 	if (pr->flags.bm_control) {
  		/* Disable bus master arbitration */
-		acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
-				  ACPI_MTX_DO_NOT_LOCK);
+		acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
 	} else if (port22_en) {
 		/* Disable AGP and PCI arbiters */
 		outb(3, 0x22);
@@ -279,16 +278,14 @@ static void longhaul_setstate(unsigned i
 	 */
 	case TYPE_POWERSAVER:
 		/* Don't allow wakeup */
-		acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0,
-				  ACPI_MTX_DO_NOT_LOCK);
+		acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
 		do_powersaver(cx->address, clock_ratio_index);
 		break;
 	}
 
 	if (pr->flags.bm_control) {
 		/* Enable bus master arbitration */
-		acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0,
-				  ACPI_MTX_DO_NOT_LOCK);
+		acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
 	} else if (port22_en) {
 		/* Enable arbiters */
 		outb(0, 0x22);
diff --git a/drivers/acpi/events/evevent.c b/drivers/acpi/events/evevent.c
index 6b4bc99..f09d1aa 100644
--- a/drivers/acpi/events/evevent.c
+++ b/drivers/acpi/events/evevent.c
@@ -204,8 +204,7 @@ static acpi_status acpi_ev_fixed_event_i
 		if (acpi_gbl_fixed_event_info[i].enable_register_id != 0xFF) {
 			status =
 			    acpi_set_register(acpi_gbl_fixed_event_info[i].
-					      enable_register_id, 0,
-					      ACPI_MTX_LOCK);
+					      enable_register_id, 0);
 			if (ACPI_FAILURE(status)) {
 				return (status);
 			}
@@ -291,7 +290,7 @@ static u32 acpi_ev_fixed_event_dispatch(
 	/* Clear the status bit */
 
 	(void)acpi_set_register(acpi_gbl_fixed_event_info[event].
-				status_register_id, 1, ACPI_MTX_DO_NOT_LOCK);
+				status_register_id, 1);
 
 	/*
 	 * Make sure we've got a handler.  If not, report an error.
@@ -299,8 +298,7 @@ static u32 acpi_ev_fixed_event_dispatch(
 	 */
 	if (NULL == acpi_gbl_fixed_event_handlers[event].handler) {
 		(void)acpi_set_register(acpi_gbl_fixed_event_info[event].
-					enable_register_id, 0,
-					ACPI_MTX_DO_NOT_LOCK);
+					enable_register_id, 0);
 
 		ACPI_ERROR((AE_INFO,
 			    "No installed handler for fixed event [%08X]",
diff --git a/drivers/acpi/events/evmisc.c b/drivers/acpi/events/evmisc.c
index 484d219..1d7a327 100644
--- a/drivers/acpi/events/evmisc.c
+++ b/drivers/acpi/events/evmisc.c
@@ -495,7 +495,7 @@ acpi_status acpi_ev_release_global_lock(
 		if (pending) {
 			status =
 			    acpi_set_register(ACPI_BITREG_GLOBAL_LOCK_RELEASE,
-					      1, ACPI_MTX_LOCK);
+					      1);
 		}
 
 		ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
diff --git a/drivers/acpi/events/evxfevnt.c b/drivers/acpi/events/evxfevnt.c
index 91e5f5b..a3d148e 100644
--- a/drivers/acpi/events/evxfevnt.c
+++ b/drivers/acpi/events/evxfevnt.c
@@ -157,7 +157,7 @@ acpi_status acpi_enable_event(u32 event,
 	 */
 	status =
 	    acpi_set_register(acpi_gbl_fixed_event_info[event].
-			      enable_register_id, 1, ACPI_MTX_LOCK);
+			      enable_register_id, 1);
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
@@ -166,7 +166,7 @@ acpi_status acpi_enable_event(u32 event,
 
 	status =
 	    acpi_get_register(acpi_gbl_fixed_event_info[event].
-			      enable_register_id, &value, ACPI_MTX_LOCK);
+			      enable_register_id, &value);
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
@@ -356,14 +356,14 @@ acpi_status acpi_disable_event(u32 event
 	 */
 	status =
 	    acpi_set_register(acpi_gbl_fixed_event_info[event].
-			      enable_register_id, 0, ACPI_MTX_LOCK);
+			      enable_register_id, 0);
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
 
 	status =
 	    acpi_get_register(acpi_gbl_fixed_event_info[event].
-			      enable_register_id, &value, ACPI_MTX_LOCK);
+			      enable_register_id, &value);
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
@@ -409,7 +409,7 @@ acpi_status acpi_clear_event(u32 event)
 	 */
 	status =
 	    acpi_set_register(acpi_gbl_fixed_event_info[event].
-			      status_register_id, 1, ACPI_MTX_LOCK);
+			      status_register_id, 1);
 
 	return_ACPI_STATUS(status);
 }
@@ -498,7 +498,7 @@ acpi_status acpi_get_event_status(u32 ev
 
 	status =
 	    acpi_get_register(acpi_gbl_fixed_event_info[event].
-			      status_register_id, event_status, ACPI_MTX_LOCK);
+			      status_register_id, event_status);
 
 	return_ACPI_STATUS(status);
 }
diff --git a/drivers/acpi/hardware/hwacpi.c b/drivers/acpi/hardware/hwacpi.c
index 9c7df71..dbcc4c0 100644
--- a/drivers/acpi/hardware/hwacpi.c
+++ b/drivers/acpi/hardware/hwacpi.c
@@ -171,8 +171,7 @@ u32 acpi_hw_get_mode(void)
 		return_UINT32(ACPI_SYS_MODE_ACPI);
 	}
 
-	status =
-	    acpi_get_register(ACPI_BITREG_SCI_ENABLE, &value, ACPI_MTX_LOCK);
+	status = acpi_get_register(ACPI_BITREG_SCI_ENABLE, &value);
 	if (ACPI_FAILURE(status)) {
 		return_UINT32(ACPI_SYS_MODE_LEGACY);
 	}
diff --git a/drivers/acpi/hardware/hwregs.c b/drivers/acpi/hardware/hwregs.c
index 9fe7adf..716e4ae 100644
--- a/drivers/acpi/hardware/hwregs.c
+++ b/drivers/acpi/hardware/hwregs.c
@@ -54,17 +54,15 @@ ACPI_MODULE_NAME("hwregs")
  *
  * FUNCTION:    acpi_hw_clear_acpi_status
  *
- * PARAMETERS:  Flags           - Lock the hardware or not
+ * PARAMETERS:  None
  *
- * RETURN:      none
+ * RETURN:      None
  *
  * DESCRIPTION: Clears all fixed and general purpose status bits
  *              THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
  *
- * NOTE: TBD: Flags parameter is obsolete, to be removed
- *
  ******************************************************************************/
-acpi_status acpi_hw_clear_acpi_status(u32 flags)
+acpi_status acpi_hw_clear_acpi_status(void)
 {
 	acpi_status status;
 	acpi_cpu_flags lock_flags = 0;
@@ -253,18 +251,15 @@ struct acpi_bit_register_info *acpi_hw_g
  *
  * PARAMETERS:  register_id     - ID of ACPI bit_register to access
  *              return_value    - Value that was read from the register
- *              Flags           - Lock the hardware or not
  *
  * RETURN:      Status and the value read from specified Register. Value
  *              returned is normalized to bit0 (is shifted all the way right)
  *
  * DESCRIPTION: ACPI bit_register read function.
  *
- * NOTE: TBD: Flags parameter is obsolete, to be removed
- *
  ******************************************************************************/
 
-acpi_status acpi_get_register(u32 register_id, u32 * return_value, u32 flags)
+acpi_status acpi_get_register(u32 register_id, u32 * return_value)
 {
 	u32 register_value = 0;
 	struct acpi_bit_register_info *bit_reg_info;
@@ -312,16 +307,13 @@ ACPI_EXPORT_SYMBOL(acpi_get_register)
  * PARAMETERS:  register_id     - ID of ACPI bit_register to access
  *              Value           - (only used on write) value to write to the
  *                                Register, NOT pre-normalized to the bit pos
- *              Flags           - Lock the hardware or not
  *
  * RETURN:      Status
  *
  * DESCRIPTION: ACPI Bit Register write function.
  *
- * NOTE: TBD: Flags parameter is obsolete, to be removed
- *
  ******************************************************************************/
-acpi_status acpi_set_register(u32 register_id, u32 value, u32 flags)
+acpi_status acpi_set_register(u32 register_id, u32 value)
 {
 	u32 register_value = 0;
 	struct acpi_bit_register_info *bit_reg_info;
diff --git a/drivers/acpi/hardware/hwsleep.c b/drivers/acpi/hardware/hwsleep.c
index 6faa76b..7c96451 100644
--- a/drivers/acpi/hardware/hwsleep.c
+++ b/drivers/acpi/hardware/hwsleep.c
@@ -277,15 +277,14 @@ acpi_status asmlinkage acpi_enter_sleep_
 
 	/* Clear wake status */
 
-	status =
-	    acpi_set_register(ACPI_BITREG_WAKE_STATUS, 1, ACPI_MTX_DO_NOT_LOCK);
+	status = acpi_set_register(ACPI_BITREG_WAKE_STATUS, 1);
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
 
 	/* Clear all fixed and general purpose status bits */
 
-	status = acpi_hw_clear_acpi_status(ACPI_MTX_DO_NOT_LOCK);
+	status = acpi_hw_clear_acpi_status();
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
@@ -398,8 +397,7 @@ acpi_status asmlinkage acpi_enter_sleep_
 	/* Wait until we enter sleep state */
 
 	do {
-		status = acpi_get_register(ACPI_BITREG_WAKE_STATUS, &in_value,
-					   ACPI_MTX_DO_NOT_LOCK);
+		status = acpi_get_register(ACPI_BITREG_WAKE_STATUS, &in_value);
 		if (ACPI_FAILURE(status)) {
 			return_ACPI_STATUS(status);
 		}
@@ -432,13 +430,12 @@ acpi_status asmlinkage acpi_enter_sleep_
 
 	ACPI_FUNCTION_TRACE(acpi_enter_sleep_state_s4bios);
 
-	status =
-	    acpi_set_register(ACPI_BITREG_WAKE_STATUS, 1, ACPI_MTX_DO_NOT_LOCK);
+	status = acpi_set_register(ACPI_BITREG_WAKE_STATUS, 1);
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
 
-	status = acpi_hw_clear_acpi_status(ACPI_MTX_DO_NOT_LOCK);
+	status = acpi_hw_clear_acpi_status();
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
@@ -465,8 +462,7 @@ acpi_status asmlinkage acpi_enter_sleep_
 
 	do {
 		acpi_os_stall(1000);
-		status = acpi_get_register(ACPI_BITREG_WAKE_STATUS, &in_value,
-					   ACPI_MTX_DO_NOT_LOCK);
+		status = acpi_get_register(ACPI_BITREG_WAKE_STATUS, &in_value);
 		if (ACPI_FAILURE(status)) {
 			return_ACPI_STATUS(status);
 		}
@@ -599,13 +595,11 @@ acpi_status acpi_leave_sleep_state(u8 sl
 
 	(void)
 	    acpi_set_register(acpi_gbl_fixed_event_info
-			      [ACPI_EVENT_POWER_BUTTON].enable_register_id, 1,
-			      ACPI_MTX_DO_NOT_LOCK);
+			      [ACPI_EVENT_POWER_BUTTON].enable_register_id, 1);
 
 	(void)
 	    acpi_set_register(acpi_gbl_fixed_event_info
-			      [ACPI_EVENT_POWER_BUTTON].status_register_id, 1,
-			      ACPI_MTX_DO_NOT_LOCK);
+			      [ACPI_EVENT_POWER_BUTTON].status_register_id, 1);
 
 	arg.integer.value = ACPI_SST_WORKING;
 	status = acpi_evaluate_object(NULL, METHOD_NAME__SST, &arg_list, NULL);
diff --git a/drivers/acpi/pci_link.c b/drivers/acpi/pci_link.c
index 5aaf358..5f5a9c0 100644
--- a/drivers/acpi/pci_link.c
+++ b/drivers/acpi/pci_link.c
@@ -787,7 +787,7 @@ static int irqrouter_resume(struct sys_d
 
 
 	/* Make sure SCI is enabled again (Apple firmware bug?) */
-	acpi_set_register(ACPI_BITREG_SCI_ENABLE, 1, ACPI_MTX_DO_NOT_LOCK);
+	acpi_set_register(ACPI_BITREG_SCI_ENABLE, 1);
 
 	list_for_each(node, &acpi_link.entries) {
 		link = list_entry(node, struct acpi_pci_link, node);
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c
index 4208ab7..b419586 100644
--- a/drivers/acpi/processor_idle.c
+++ b/drivers/acpi/processor_idle.c
@@ -187,8 +187,7 @@ acpi_processor_power_activate(struct acp
 		case ACPI_STATE_C3:
 			/* Disable bus master reload */
 			if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
-				acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0,
-						  ACPI_MTX_DO_NOT_LOCK);
+				acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
 			break;
 		}
 	}
@@ -198,8 +197,7 @@ acpi_processor_power_activate(struct acp
 	case ACPI_STATE_C3:
 		/* Enable bus master reload */
 		if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
-			acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1,
-					  ACPI_MTX_DO_NOT_LOCK);
+			acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
 		break;
 	}
 
@@ -287,12 +285,10 @@ static void acpi_processor_idle(void)
 
 		pr->power.bm_activity <<= diff;
 
-		acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS,
-				  &bm_status, ACPI_MTX_DO_NOT_LOCK);
+		acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
 		if (bm_status) {
 			pr->power.bm_activity |= 0x1;
-			acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS,
-					  1, ACPI_MTX_DO_NOT_LOCK);
+			acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
 		}
 		/*
 		 * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
@@ -404,8 +400,7 @@ static void acpi_processor_idle(void)
 				 * All CPUs are trying to go to C3
 				 * Disable bus master arbitration
 				 */
-				acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1,
-						  ACPI_MTX_DO_NOT_LOCK);
+				acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
 			}
 		} else {
 			/* SMP with no shared cache... Invalidate cache  */
@@ -421,8 +416,7 @@ static void acpi_processor_idle(void)
 		if (pr->flags.bm_check) {
 			/* Enable bus master arbitration */
 			atomic_dec(&c3_cpu_count);
-			acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0,
-					  ACPI_MTX_DO_NOT_LOCK);
+			acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
 		}
 
 #ifdef CONFIG_GENERIC_TIME
@@ -882,8 +876,7 @@ static void acpi_processor_power_verify_
 					  " for C3 to be enabled on SMP systems\n"));
 			return;
 		}
-		acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD,
-				  0, ACPI_MTX_DO_NOT_LOCK);
+		acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
 	}
 
 	/*
diff --git a/include/acpi/achware.h b/include/acpi/achware.h
index f3e9a03..ae449f2 100644
--- a/include/acpi/achware.h
+++ b/include/acpi/achware.h
@@ -82,7 +82,7 @@ acpi_hw_low_level_read(u32 width,
 acpi_status
 acpi_hw_low_level_write(u32 width, u32 value, struct acpi_generic_address *reg);
 
-acpi_status acpi_hw_clear_acpi_status(u32 flags);
+acpi_status acpi_hw_clear_acpi_status(void);
 
 /*
  * hwgpe - GPE support
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h
index 4a5b14b..035a5a8 100644
--- a/include/acpi/acpixf.h
+++ b/include/acpi/acpixf.h
@@ -306,9 +306,9 @@ acpi_resource_to_address64(struct acpi_r
 /*
  * Hardware (ACPI device) interfaces
  */
-acpi_status acpi_get_register(u32 register_id, u32 * return_value, u32 flags);
+acpi_status acpi_get_register(u32 register_id, u32 * return_value);
 
-acpi_status acpi_set_register(u32 register_id, u32 value, u32 flags);
+acpi_status acpi_set_register(u32 register_id, u32 value);
 
 acpi_status
 acpi_set_firmware_waking_vector(acpi_physical_address physical_address);
-- 
1.4.4.1

  parent reply	other threads:[~2006-11-24  7:16 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-11-24  7:18 contents of the acpica branch Len Brown
     [not found] ` <410c2f0190f74c35505beda6ff3f2da7819f8bac.1164352285.git.len.brown@intel.com>
2006-11-24  7:18   ` [PATCH 1/65] ACPICA: Update function header Len Brown
     [not found]   ` <b36e9a5492481728323509aa6179ce6bdab46953.1164352285.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 2/65] ACPICA: Handle mis-matched package length Len Brown
     [not found]   ` <34a1e7753c2bddaed096a7342ea5a138737c8033.1164352285.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 3/65] ACPICA: Handle case NumElements > Package length Len Brown
     [not found]   ` <e555508044e355677130b49c67aa6acf9559e014.1164352285.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 4/65] ACPICA: Delete recursive feature of ACPI Global Lock Len Brown
     [not found]   ` <66534596d22c36a673afc16e8842de3e5d1b99c5.1164352287.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 5/65] ACPICA: Release global lock from interrupt handler Len Brown
     [not found]   ` <769a0a9461f482d132e563f3dc09649e4b60989d.1164352288.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 6/65] ACPICA: Cast acpi_thread_id to UINT32 for debug output only Len Brown
     [not found]   ` <c243528a18ae423700c1e6d41e027b18907189eb.1164352288.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 7/65] ACPICA: fix for object premature deletion Len Brown
     [not found]   ` <c439b8a0815e3992b20e20f5890daf0c494f9519.1164352288.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 8/65] ACPICA: Temporary fix for BankValue parameter Len Brown
     [not found]   ` <e3360d67bf3a2661dc3c7b2f470a263e4bea340d.1164352288.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 9/65] ACPICA: Update version to 20060721 Len Brown
     [not found]   ` <13a610105f122dc0836db720d985b3e8f8be1086.1164352288.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 10/65] ACPICA: Update debug output Len Brown
     [not found]   ` <0faeae4ba9aef6951c161cb01955ae3d25743f16.1164352290.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 12/65] ACPICA: misc fixes for new Table Manager: Len Brown
     [not found]   ` <c0f2f417d70ac411c7085aa64ffc44787562e1ca.1164352291.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 13/65] ACPICA: Update comments for individual table fields Len Brown
     [not found]   ` <7f4682ef0ee3349060e1d9c037d6c97d111c05b0.1164352291.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 14/65] ACPICA: Fix for FADT conversion in 64-bit mode Len Brown
     [not found]   ` <ec604624c47740c2516cf8a4f2fa33a04956b810.1164352291.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 15/65] ACPICA: Lint changes Len Brown
     [not found]       ` <1164352776767-git-send-email-len.brown@intel.com>
     [not found]   ` <9e50272927495c4480e6476b686d1960b804c5ad.1164352293.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 17/65] ACPICA: Add support for DMAR table Len Brown
     [not found]       ` <37c6794383d6d3c1c816a1ebedd0bcc49510c5d8.1164352293.git.len.brown@intel.com>
2006-11-24  7:18         ` [PATCH 18/65] ACPICA: Add acpi_gpe_count global to track the number of GPE events Len Brown
     [not found]   ` <023eab64321d171542941abe76d9248d11a52778.1164352293.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 19/65] ACPICA: Disable all wake GPEs after first one recieved Len Brown
     [not found]   ` <fca6a1e6bd5f675d123948f9a4ca07defe24fad5.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 20/65] ACPICA: Fix unalignment in acpi_ut_repair_name Len Brown
     [not found]   ` <50ae4c050de1b4052c93bb7c2501877e2ae2d383.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 21/65] ACPICA: Store GPE number instead of bitmask Len Brown
     [not found]   ` <03a5f10642d95d738db56368dff73566bb313a54.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 22/65] ACPICA: Split acpi_format_exception into two parts Len Brown
     [not found]   ` <d09157670d9e199175b04cc5fc12fc6fb57a0ad2.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 23/65] ACPICA: Update version to 20060831 Len Brown
     [not found]   ` <d6efb2b656ab13fa3a972e9f20310e4f7be5d1f8.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 24/65] ACPICA: Cleanup of FADT verification function Len Brown
     [not found]   ` <e065bf0eac9680e2f57707574a0f99feca29d4f6.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 25/65] ACPICA: Create tbfadt.c to hold all FADT-related functions Len Brown
     [not found]   ` <1ed5347751418ace666b50cc4c48ccb6949607c8.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 26/65] ACPICA: Re-implement interpreters' "serialized mode" Len Brown
     [not found]   ` <dbd789f0d0b59443e5001cd3d2501e0d9ffd2ad2.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 27/65] ACPICA: Delete stale FADT functions outside tbfadt.c Len Brown
     [not found]   ` <f9be8a6f16cc421158078ede60ccb24c06267704.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 28/65] ACPICA: Update comments in tbfadt.c Len Brown
     [not found]   ` <1041493b499fda1e537b685ee65c35feba6e60d5.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 29/65] ACPICA: add ASF comment Len Brown
     [not found]   ` <ff81896d6f21cfd03e168b175a6bce110fb73983.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 30/65] ACPICA: re-factor table init routines for benefit of iASL Len Brown
     [not found]   ` <4026bee38fc195a7bec6ac14f832867dbc5ce314.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 31/65] ACPICA: Allow type ANY to be the target of the Scope operator Len Brown
     [not found]   ` <595830000ed536d250568af7fec2a54136a65f36.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 32/65] ACPICA: IsResourceTemplate now returns ACPI_STATUS Len Brown
     [not found]   ` <0441d700442eb4c9345d4f2b6700c8fda5c1288b.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 33/65] ACPICA: Add declarations for ASF! sub-tables Len Brown
     [not found]   ` <c2ed0e4b2171e6991fe8a0ce8e8961ccdc9527da.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 34/65] ACPICA: FADT verification is now table driven Len Brown
     [not found]       ` <c2b3bf4643dbb78eb201b921c55d8a842d7f4d7b.1164352294.git.len.brown@intel.com>
2006-11-24  7:18         ` [PATCH 35/65] ACPICA: Report error if method creates 2 objects with the same name Len Brown
     [not found]   ` <755518e665a471847860fece68e49ef7da20ed65.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 36/65] ACPICA: New common routine for creating and verifying a local FADT Len Brown
     [not found]   ` <6f4be3a14fbbe2a248fbc61984bf7cbd20bd281f.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 37/65] ACPICA: Fix memory leak in table load error path Len Brown
     [not found]   ` <73b9e5384bfbd85f9b28ac667d1f26e6a40bae1d.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 38/65] ACPICA: Fix trace output name and whitespace Len Brown
     [not found]   ` <a8d7bebea250db7caed8d250706cbfe6332cf505.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 39/65] ACPICA: Update version to 20060912 Len Brown
     [not found]   ` <f2eec4942e2547d5dc3c45e0c6811ab941b4708b.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 40/65] ACPICA: Add full table name to disassembler output Len Brown
     [not found]   ` <d2b75254597975c3b34d6d2efd27029764e83e4c.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 41/65] ACPICA: Fix for Global Lock semaphore Len Brown
     [not found]   ` <6ccc4ddcc4790ad35ecc1b433d693cd9a356d8b1.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` Len Brown [this message]
     [not found]   ` <d24e96ccb3551ff33821c306179ed02ad89fb041.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 43/65] ACPICA: Use faster ByIndex interface to get FACS Len Brown
     [not found]   ` <bbdd9137672564c57f2c4bf8a00ca1e9c0b8d455.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 44/65] ACPICA: On AML mutex force-release, set depth to zero (was 1) Len Brown
     [not found]   ` <fe21784a741d247ff18c34d67d56f5d374a0b5cb.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 45/65] ACPICA: Update interpreter error paths to always report the error Len Brown
     [not found]   ` <d9debf4714e309c46d37e11d73f3eef7bdff67ff.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 46/65] ACPICA: Fix for possible memory leak and fault Len Brown
     [not found]   ` <128d1711966b7242572b7b68e1522a21790a372c.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 47/65] ACPICA: Add new subsystem state bit that is set after SubsystemInitialize is called Len Brown
     [not found]   ` <92e90a77b802be0d2d0f3e1ace087fc5ccbaad39.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 48/65] ACPICA: Update version to 20060927 Len Brown
     [not found]   ` <e885033cdaa6db92d00b3ea53e69763ba45ef7df.1164352294.git.len.brown@intel.com>
2006-11-24  7:18     ` [PATCH 49/65] ACPICA: Restructured module into multiple functions Len Brown
     [not found]   ` <debc56bf59819095a2e54a41c2a25d6475a6e761.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 50/65] ACPICA: Eliminate control method 2-pass parse/execute Len Brown
     [not found]   ` <de2576c39bf22ea81e46280dee9a7543176852b1.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 51/65] ACPICA: Fix race condition with AcpiWalkNamespace Len Brown
     [not found]       ` <14b975ea77e0241f7867bca815b0eec71fb155d6.1164352294.git.len.brown@intel.com>
2006-11-24  7:19         ` [PATCH 52/65] ACPICA: _CID support for PCI Root Bridge detection Len Brown
     [not found]   ` <471c0881b4517e4fd7ae8995146cb34bbfc7a01e.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 53/65] ACPICA: Use manifest constants for parse pass number Len Brown
     [not found]   ` <088fea9ab6d74b85b9557e784f6d35db57c5acbf.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 54/65] ACPICA: Update comments Len Brown
     [not found]   ` <8bb9f81e2a6196b3fd4f1c72edb3ca1e5d4d0d80.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 55/65] ACPICA: Abort downward walk on temporary node detection Len Brown
     [not found]   ` <162f921f22ad8bc804e3c5de1b1e8e8433e35e2d.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 56/65] ACPICA: Fixes for parameter validation Len Brown
     [not found]   ` <e6d024ae7ac51219f13184b210f86b0dbff828e3.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 57/65] ACPICA: Update version to 20061011 Len Brown
     [not found]   ` <23eb8b53020362239d0127b6751fbc5156782240.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 58/65] ACPICA: Update debug output routines for data structure changes Len Brown
     [not found]   ` <e446515cc751f48675116855f4bec723896da94d.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 59/65] ACPICA: Miscellaneous table manager updates and optimizations Len Brown
     [not found]   ` <a799ea72f1f893ef9e3a46f60b6f310df8bc097c.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 60/65] ACPICA: Fixes for load() operator Len Brown
     [not found]   ` <7898d448d7775b5433f156acc113f00d9c740720.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 61/65] ACPICA: Ensure that all structures in acobject.h are aligned, via #pragma Len Brown
     [not found]   ` <b34f5f8dfcfcb0a7ad51089b052a1632706045e7.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 62/65] ACPICA: Add ACPI_MAX macro Len Brown
     [not found]   ` <fdbad6e3a27eb5b8aca9cfa765748e7b9d0d860d.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 63/65] ACPICA: Fail AcpiEnable if ACPI tables not loaded Len Brown
     [not found]   ` <e5cd826561b5b7d4397e463501539d43160888a0.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 64/65] ACPICA: Add include of actables.h Len Brown
     [not found]   ` <04ebfbb71be49b0ff2b9a87f9dc38d0949188b59.1164352294.git.len.brown@intel.com>
2006-11-24  7:19     ` [PATCH 65/65] ACPICA: version update Len Brown
2006-11-24 20:32 ` contents of the acpica branch Rafael J. Wysocki
2006-11-24 22:25   ` Rafael J. Wysocki
2006-11-27  2:12     ` Len Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=11643528032291-git-send-email-len.brown@intel.com \
    --to=len.brown@intel.com \
    --cc=alexey.y.starikovskiy@intel.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=robert.moore@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).