16 Jan, 2016

1 commit


01 Jan, 2016

4 commits


22 Oct, 2015

1 commit


14 Apr, 2015

1 commit

  • ACPICA commit 3d9fb6d1f216a78ad098d3ad23f1304376c2f4ef

    The macro __DATE__ and friends is not allowed in the Linux kernel. Also,
    including the build time in output doesn't seem to provide any value.

    Link: https://github.com/acpica/acpica/commit/3d9fb6d1
    Signed-off-by: Rasmus Villemoes
    Acked-by: David E. Box
    Signed-off-by: Bob Moore
    Signed-off-by: Lv Zheng
    Signed-off-by: Rafael J. Wysocki

    Rasmus Villemoes
     

05 Feb, 2015

1 commit


08 Jul, 2014

2 commits

  • This patch uses abstract file IO and acpi_log_error() APIs to enhance
    cm_get_file_size() so that applications that invoke this API could have
    portability improved.

    With actual references added to abstract file IO and acpi_log_error(), the
    applications need to link oslibcfs.o, utdebug.o, utexcep.o, utmath.o,
    utprint.o and utxferror.o.

    It is also required to add acpi_os_initialize() invocations if an
    application starts to use acpi_log_error().

    acpidump has already invoked acpi_os_initialize() in this way. Lv Zheng.

    Signed-off-by: Lv Zheng
    Signed-off-by: Bob Moore
    Signed-off-by: Rafael J. Wysocki

    Lv Zheng
     
  • This patch enhances ACPI_USAGE_xxx/ACPI_OPTION macros to use portable
    acpi_os_printf() so that usage functions for applications no longer rely on
    the printf() API.

    To use acpi_os_printf() exported by osunixxf.c as a replacement of
    printf(), applications need to initialize acpi_gbl_output_file to stdout
    and initialize acpi_gbl_db_output_flags to ACPI_DB_CONSOLE_OUTPUT. The
    latter is automatically done by ACPI_INIT_GLOBAL(), applications need to
    link utglobal.o to utilize this mechanism. For GCC, assigning stdout to
    acpi_gbl_output_file using ACPI_INIT_GLOBAL() is not possible as stdout is
    not a constant in GCC environment. As an alternative solution, stdout
    assignment has been put into acpi_os_initialize(). Thus
    acpi_os_initialize() need to be invoked very early by the applications to
    initialize the default output of acpi_os_printf() to keep behavior
    consistency.

    acpidump has already invoked acpi_os_initialize() in this way. Lv Zheng.

    Signed-off-by: Lv Zheng
    Signed-off-by: Bob Moore
    Signed-off-by: Rafael J. Wysocki

    Lv Zheng
     

21 Apr, 2014

1 commit

  • The acpidump is initiated by Bob Moore and Chao Guan, fixed and completed
    by Lv Zheng.

    This patch is a generation of the commit that adds acpidump release
    automation into ACPICA release process. Lv Zheng.

    Note that this patch doesn't replace the kernel shipped acpidump with the
    new acpidump. The replacement is done by further patches.

    Original-by: Chao Guan
    Signed-off-by: Lv Zheng
    Signed-off-by: Bob Moore
    Signed-off-by: Rafael J. Wysocki

    Lv Zheng