1. 27 3月, 2009 14 次提交
  2. 07 2月, 2009 1 次提交
    • M
      ACPICA: Fix table entry truncation calculation · 386e4a83
      Myron Stowe 提交于
      During early boot, ACPI RSDT/XSDT table entries are gathered into the
      'initial_tables[]' array.  This array is currently statically defined (see
      ./drivers/acpi/tables.c).  When there are more table entries than can be
      held in the 'initial_tables[]' array, the message "Truncating N table
      entries!" is output.  As currently implemented, this message will always
      erroneously calculate N as 0.
      
      This patch fixes the calculation that determines how many table entries
      will be missing (truncated).
      
      This modification may be used under either the GPL or the BSD-style
      license used for Intel ACPI CA code.
      Signed-off-by: NMyron Stowe <myron.stowe@hp.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      386e4a83
  3. 04 2月, 2009 1 次提交
    • L
      ACPICA: add debug dump of BIOS _OSI strings · 3e0676a9
      Len Brown 提交于
      on boot, print out the OSI strings the BIOS uses to query the OS.
      
      To see this output...
      
      build with CONFIG_ACPI_DEBUG
      
      boot with
      "acpi.debug_level=4" (ACPI_LV_INFO) (enabled by default)
      and
      "acpi.debug_level=1" (ACPI_UTILITIES) (default is 0)
      
      example output:
      
      ACPI: BIOS _OSI(Windows 2001) supported
      ACPI: BIOS _OSI(Windows 2001 SP1) supported
      ACPI: BIOS _OSI(Windows 2001 SP2) supported
      ACPI: BIOS _OSI(Windows 2006) supported
      ACPI: BIOS _OSI(Linux) not-supported
      ACPI: BIOS _OSI(FreeBSD) not-supported
      Signed-off-by: NLen Brown <len.brown@intel.com>
      3e0676a9
  4. 09 1月, 2009 2 次提交