public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/21] ACPICA 20130214 Release
@ 2013-03-08  9:19 Lv Zheng
  2013-03-08  9:19 ` [PATCH 01/21] ACPICA: Resource Mgr: Prevent infinite loops in resource walks Lv Zheng
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: Lv Zheng @ 2013-03-08  9:19 UTC (permalink / raw)
  To: Len Brown, Rafael J. Wysocki, Robert Moore; +Cc: linux-acpi, Lv Zheng

The 20130214 ACPICA linuxized patches are based on the pm/linux-next
branch.
The patch set has passed a basic build/boot test on z530.
No new divergences are introduced by this patch set.

Bob Moore (14):
  ACPICA: Resource Mgr: Prevent infinite loops in resource walks
  ACPICA: Fix a couple warnings detected on FreeBSD build
  ACPICA: Update error/debug messages for fixed events
  ACPICA: Add parens within macros around parameter names
  ACPICA: Update for ACPI 5 hardware-reduced feature
  ACPICA: Regression fix: reinstate safe exit macros
  ACPICA: Add macros to exception code definitions
  ACPICA: Add exception descriptions to exception info table
  ACPICA: Remove trailing comma in enum declarations
  ACPICA: Add mechanism for early object repairs on a per-name basis
  ACPICA: Split object conversion functions to a new file
  ACPICA: Disassembler: Add warnings for unresolved control methods
  ACPICA: Object repair: Allow 0-length packages for variable-length
    packages
  ACPICA: Update version to 20130214

Jung-uk Kim (2):
  ACPICA: Fix a long-standing bug in local cache
  ACPICA: Add macros to access pointer to next object in the descriptor
    list

Lv Zheng (5):
  ACPICA: Update RASF table definition
  ACPICA: iASL/Disassembler: Add support for VRTC table
  ACPICA: iASL/Disassembler: Add support for MTMR table
  ACPICA: Return object repair: Add string-to-unicode conversion
  ACPICA: Return object repair: Add resource template repairs

 drivers/acpi/acpica/Makefile    |    1 +
 drivers/acpi/acpica/acglobal.h  |    4 +-
 drivers/acpi/acpica/aclocal.h   |   16 ++
 drivers/acpi/acpica/acmacros.h  |    6 +-
 drivers/acpi/acpica/acnamesp.h  |   25 ++-
 drivers/acpi/acpica/acutils.h   |    3 +-
 drivers/acpi/acpica/dsutils.c   |   10 +-
 drivers/acpi/acpica/evevent.c   |   12 +-
 drivers/acpi/acpica/evgpe.c     |    6 +-
 drivers/acpi/acpica/evsci.c     |    4 +-
 drivers/acpi/acpica/evxface.c   |   21 +-
 drivers/acpi/acpica/evxfevnt.c  |   12 +
 drivers/acpi/acpica/exprep.c    |    4 +-
 drivers/acpi/acpica/exutils.c   |    4 +-
 drivers/acpi/acpica/hwacpi.c    |   20 +-
 drivers/acpi/acpica/nsconvert.c |  443 +++++++++++++++++++++++++++++++++++++
 drivers/acpi/acpica/nspredef.c  |  141 ++++++------
 drivers/acpi/acpica/nsprepkg.c  |   10 +-
 drivers/acpi/acpica/nsrepair.c  |  381 ++++++++++++--------------------
 drivers/acpi/acpica/nsrepair2.c |   16 +-
 drivers/acpi/acpica/nsutils.c   |    8 +-
 drivers/acpi/acpica/psargs.c    |    2 +-
 drivers/acpi/acpica/rscalc.c    |    6 +
 drivers/acpi/acpica/rsdump.c    |    8 +
 drivers/acpi/acpica/rslist.c    |    8 +
 drivers/acpi/acpica/rsxface.c   |    8 +-
 drivers/acpi/acpica/utaddress.c |    4 +-
 drivers/acpi/acpica/utcache.c   |   18 +-
 drivers/acpi/acpica/utexcep.c   |   26 ++-
 drivers/acpi/acpica/utglobal.c  |    2 +
 include/acpi/acexcep.h          |  461 +++++++++++++++++++++++----------------
 include/acpi/acoutput.h         |   53 ++++-
 include/acpi/acpixf.h           |    2 +-
 include/acpi/actbl2.h           |   47 ++++
 include/acpi/actbl3.h           |   55 ++++-
 include/acpi/actypes.h          |    1 -
 36 files changed, 1231 insertions(+), 617 deletions(-)
 create mode 100644 drivers/acpi/acpica/nsconvert.c

-- 
1.7.10


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

end of thread, other threads:[~2013-03-26 13:14 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-08  9:19 [PATCH 00/21] ACPICA 20130214 Release Lv Zheng
2013-03-08  9:19 ` [PATCH 01/21] ACPICA: Resource Mgr: Prevent infinite loops in resource walks Lv Zheng
2013-03-08  9:20 ` [PATCH 02/21] ACPICA: Fix a couple warnings detected on FreeBSD build Lv Zheng
2013-03-08  9:20 ` [PATCH 03/21] ACPICA: Update RASF table definition Lv Zheng
2013-03-08  9:20 ` [PATCH 04/21] ACPICA: iASL/Disassembler: Add support for VRTC table Lv Zheng
2013-03-08  9:20 ` [PATCH 05/21] ACPICA: iASL/Disassembler: Add support for MTMR table Lv Zheng
2013-03-08  9:21 ` [PATCH 06/21] ACPICA: Fix a long-standing bug in local cache Lv Zheng
2013-03-08  9:21 ` [PATCH 07/21] ACPICA: Update error/debug messages for fixed events Lv Zheng
2013-03-08  9:21 ` [PATCH 08/21] ACPICA: Add macros to access pointer to next object in the descriptor list Lv Zheng
2013-03-08  9:22 ` [PATCH 09/21] ACPICA: Add parens within macros around parameter names Lv Zheng
2013-03-08  9:22 ` [PATCH 10/21] ACPICA: Update for ACPI 5 hardware-reduced feature Lv Zheng
2013-03-08  9:22 ` [PATCH 11/21] ACPICA: Regression fix: reinstate safe exit macros Lv Zheng
2013-03-08  9:22 ` [PATCH 12/21] ACPICA: Add macros to exception code definitions Lv Zheng
2013-03-08  9:22 ` [PATCH 13/21] ACPICA: Add exception descriptions to exception info table Lv Zheng
2013-03-08  9:22 ` [PATCH 14/21] ACPICA: Remove trailing comma in enum declarations Lv Zheng
2013-03-08  9:23 ` [PATCH 15/21] ACPICA: Add mechanism for early object repairs on a per-name basis Lv Zheng
2013-03-08  9:23 ` [PATCH 16/21] ACPICA: Split object conversion functions to a new file Lv Zheng
2013-03-08  9:23 ` [PATCH 17/21] ACPICA: Return object repair: Add string-to-unicode conversion Lv Zheng
2013-03-08  9:23 ` [PATCH 18/21] ACPICA: Return object repair: Add resource template repairs Lv Zheng
2013-03-08  9:23 ` [PATCH 19/21] ACPICA: Disassembler: Add warnings for unresolved control methods Lv Zheng
2013-03-08  9:23 ` [PATCH 20/21] ACPICA: Object repair: Allow 0-length packages for variable-length packages Lv Zheng
2013-03-08  9:23 ` [PATCH 21/21] ACPICA: Update version to 20130214 Lv Zheng
2013-03-26 13:22 ` [PATCH 00/21] ACPICA 20130214 Release Rafael J. Wysocki

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