1. 25 11月, 2009 1 次提交
  2. 27 8月, 2009 1 次提交
    • B
      ACPICA: Major update for acpi_get_object_info external interface · 15b8dd53
      Bob Moore 提交于
      Completed a major update for the acpi_get_object_info external interface.
      Changes include:
       - Support for variable, unlimited length HID, UID, and CID strings
       - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA, etc.)
       - Call the _SxW power methods on behalf of a device object
       - Determine if a device is a PCI root bridge
       - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO.
      These changes will require an update to all callers of this interface.
      See the ACPICA Programmer Reference for details.
      
      Also, update all invocations of acpi_get_object_info interface
      Signed-off-by: NBob Moore <robert.moore@intel.com>
      Signed-off-by: NLin Ming <ming.m.lin@intel.com>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      15b8dd53
  3. 03 8月, 2009 2 次提交
  4. 26 6月, 2009 1 次提交
  5. 06 1月, 2009 1 次提交
  6. 08 11月, 2008 1 次提交
  7. 23 10月, 2008 1 次提交
  8. 11 10月, 2008 2 次提交
  9. 24 7月, 2007 1 次提交
  10. 26 4月, 2007 1 次提交
  11. 13 2月, 2007 3 次提交
    • L
      ACPI: delete extra #defines in /drivers/acpi/ drivers · 7cda93e0
      Len Brown 提交于
      Cosmetic only.
      
      Except in a single case, #define ACPI_*_DRIVER_NAME
      were invoked 0 or 1 times.
      Signed-off-by: NLen Brown <len.brown@intel.com>
      7cda93e0
    • L
      ACPI: fix acpi_driver.name usage · c2b6705b
      Len Brown 提交于
      It was erroneously used as a description rather than a name.
      
      ie. turn this:
      
      lenb@se7525gp2:/sys> ls bus/acpi/drivers
      ACPI AC Adapter Driver  ACPI Embedded Controller Driver  ACPI Power Resource Driver
      ACPI Battery Driver     ACPI Fan Driver                  ACPI Processor Driver
      ACPI Button Driver      ACPI PCI Interrupt Link Driver   ACPI Thermal Zone Driver
      ACPI container driver   ACPI PCI Root Bridge Driver      hpet
      
      into this:
      
      lenb@se7525gp2:~> ls /sys/bus/acpi/drivers
      ac  battery  button  container  ec  fan  hpet  pci_link  pci_root  power  processor  thermal
      Signed-off-by: NLen Brown <len.brown@intel.com>
      c2b6705b
    • L
      ACPI: clean up ACPI_MODULE_NAME() use · f52fd66d
      Len Brown 提交于
      cosmetic only
      
      Make "module name" actually match the file name.
      Invoke with ';' as leaving it off confuses Lindent and gcc doesn't care.
      Fix indentation where Lindent did get confused.
      Signed-off-by: NLen Brown <len.brown@intel.com>
      f52fd66d
  12. 21 12月, 2006 1 次提交
  13. 21 10月, 2006 2 次提交
  14. 14 10月, 2006 1 次提交
  15. 01 10月, 2006 1 次提交
  16. 16 8月, 2006 1 次提交
    • Y
      ACPI: memory hotplug: remove useless message at boot time · 07dd4855
      Yasunori Goto 提交于
      This is to remove noisy useless message at boot.  The message is a ton of
      "ACPI Exception (acpi_memory-0492): AE_ERROR, handle is no memory device"
      
      In my emulation, number of memory devices are not so many (only 6), but,
      this messages are displayed 114 times.
      
      It is showed by acpi_memory_register_notify_handler() which is called by
      acpi_walk_namespace().
      
      acpi_walk_namespace() parses all of ACPI's namespace and execute
      acpi_memory_register_notify_handler().  So, it is called for all of the
      device which is defined in namespace.  If the parsing device is not memory,
      acpi_memhotplug ignores it due to "no match" and will parse next device.
      This is normal route, not an exception.
      Signed-off-by: NYasunori Goto <y-goto@jp.fujitsu.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      07dd4855
  17. 06 8月, 2006 2 次提交
  18. 30 6月, 2006 5 次提交
  19. 28 6月, 2006 5 次提交
  20. 27 6月, 2006 3 次提交
  21. 02 4月, 2006 1 次提交
  22. 07 1月, 2006 1 次提交
    • K
      [ACPI] acpi_memhotplug.c build fix · 3963f008
      KAMEZAWA Hiroyuki 提交于
      drivers/acpi/acpi_memhotplug.c: In function `acpi_memory_get_device_resources':
      drivers/acpi/acpi_memhotplug.c:101: error: structure has no member named `attribute'
      drivers/acpi/acpi_memhotplug.c:103: error: structure has no member named `attribute'
      drivers/acpi/acpi_memhotplug.c: In function `acpi_memory_disable_device':
      drivers/acpi/acpi_memhotplug.c:253: warning: unused variable `attr'
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      3963f008
  23. 10 12月, 2005 1 次提交
    • B
      [ACPI] ACPICA 20050930 · 50eca3eb
      Bob Moore 提交于
      Completed a major overhaul of the Resource Manager code -
      specifically, optimizations in the area of the AML/internal
      resource conversion code. The code has been optimized to
      simplify and eliminate duplicated code, CPU stack use has
      been decreased by optimizing function parameters and local
      variables, and naming conventions across the manager have
      been standardized for clarity and ease of maintenance (this
      includes function, parameter, variable, and struct/typedef
      names.)
      
      All Resource Manager dispatch and information tables have
      been moved to a single location for clarity and ease of
      maintenance. One new file was created, named "rsinfo.c".
      
      The ACPI return macros (return_ACPI_STATUS, etc.) have
      been modified to guarantee that the argument is
      not evaluated twice, making them less prone to macro
      side-effects. However, since there exists the possibility
      of additional stack use if a particular compiler cannot
      optimize them (such as in the debug generation case),
      the original macros are optionally available.  Note that
      some invocations of the return_VALUE macro may now cause
      size mismatch warnings; the return_UINT8 and return_UINT32
      macros are provided to eliminate these. (From Randy Dunlap)
      
      Implemented a new mechanism to enable debug tracing for
      individual control methods. A new external interface,
      acpi_debug_trace(), is provided to enable this mechanism. The
      intent is to allow the host OS to easily enable and disable
      tracing for problematic control methods. This interface
      can be easily exposed to a user or debugger interface if
      desired. See the file psxface.c for details.
      
      acpi_ut_callocate() will now return a valid pointer if a
      length of zero is specified - a length of one is used
      and a warning is issued. This matches the behavior of
      acpi_ut_allocate().
      Signed-off-by: NBob Moore <robert.moore@intel.com>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      50eca3eb
  24. 30 10月, 2005 1 次提交