Subversion Repositories Kolibri OS

Rev

Rev 1498 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1498 Rev 2216
Line 6... Line 6...
6
 
6
 
7
/******************************************************************************
7
/******************************************************************************
8
 *
8
 *
9
 * 1. Copyright Notice
9
 * 1. Copyright Notice
10
 *
10
 *
11
 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
11
 * Some or all of this work - Copyright (c) 1999 - 2011, Intel Corp.
12
 * All rights reserved.
12
 * All rights reserved.
13
 *
13
 *
14
 * 2. License
14
 * 2. License
15
 *
15
 *
Line 398... Line 398...
398
/*
398
/*
399
 * Error reporting. Callers module and line number are inserted by AE_INFO,
399
 * Error reporting. Callers module and line number are inserted by AE_INFO,
400
 * the plist contains a set of parens to allow variable-length lists.
400
 * the plist contains a set of parens to allow variable-length lists.
401
 * These macros are used for both the debug and non-debug versions of the code.
401
 * These macros are used for both the debug and non-debug versions of the code.
402
 */
402
 */
403
#define ACPI_ERROR_NAMESPACE(s, e)      AcpiNsReportError (AE_INFO, s, e);
403
#define ACPI_ERROR_NAMESPACE(s, e)      AcpiUtNamespaceError (AE_INFO, s, e);
404
#define ACPI_ERROR_METHOD(s, n, p, e)   AcpiNsReportMethodError (AE_INFO, s, n, p, e);
404
#define ACPI_ERROR_METHOD(s, n, p, e)   AcpiUtMethodError (AE_INFO, s, n, p, e);
405
#define ACPI_WARN_PREDEFINED(plist)     AcpiUtPredefinedWarning plist
405
#define ACPI_WARN_PREDEFINED(plist)     AcpiUtPredefinedWarning plist
406
#define ACPI_INFO_PREDEFINED(plist)     AcpiUtPredefinedInfo plist
406
#define ACPI_INFO_PREDEFINED(plist)     AcpiUtPredefinedInfo plist
Line 407... Line 407...
407
 
407