1 /*******************************************************************************
3 * Module Name: utxferror - Various error/warning output functions
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #define EXPORT_ACPI_INTERFACES
50 #define _COMPONENT ACPI_UTILITIES
51 ACPI_MODULE_NAME ("utxferror")
54 * This module is used for the in-kernel ACPICA as well as the ACPICA
58 #ifndef ACPI_NO_ERROR_MESSAGES /* Entire module */
60 /*******************************************************************************
64 * PARAMETERS: ModuleName - Caller's module name (for error output)
65 * LineNumber - Caller's line number (for error output)
66 * Format - Printf format string + additional args
70 * DESCRIPTION: Print "ACPI Error" message with module/line/version info
72 ******************************************************************************/
74 void ACPI_INTERNAL_VAR_XFACE
76 const char *ModuleName
,
84 ACPI_MSG_REDIRECT_BEGIN
;
85 AcpiOsPrintf (ACPI_MSG_ERROR
);
87 va_start (ArgList
, Format
);
88 AcpiOsVprintf (Format
, ArgList
);
92 ACPI_MSG_REDIRECT_END
;
95 ACPI_EXPORT_SYMBOL (AcpiError
)
98 /*******************************************************************************
100 * FUNCTION: AcpiException
102 * PARAMETERS: ModuleName - Caller's module name (for error output)
103 * LineNumber - Caller's line number (for error output)
104 * Status - Status to be formatted
105 * Format - Printf format string + additional args
109 * DESCRIPTION: Print "ACPI Exception" message with module/line/version info
110 * and decoded ACPI_STATUS.
112 ******************************************************************************/
114 void ACPI_INTERNAL_VAR_XFACE
116 const char *ModuleName
,
125 ACPI_MSG_REDIRECT_BEGIN
;
127 /* For AE_OK, just print the message */
129 if (ACPI_SUCCESS (Status
))
131 AcpiOsPrintf (ACPI_MSG_EXCEPTION
);
136 AcpiOsPrintf (ACPI_MSG_EXCEPTION
"%s, ",
137 AcpiFormatException (Status
));
140 va_start (ArgList
, Format
);
141 AcpiOsVprintf (Format
, ArgList
);
145 ACPI_MSG_REDIRECT_END
;
148 ACPI_EXPORT_SYMBOL (AcpiException
)
151 /*******************************************************************************
153 * FUNCTION: AcpiWarning
155 * PARAMETERS: ModuleName - Caller's module name (for error output)
156 * LineNumber - Caller's line number (for error output)
157 * Format - Printf format string + additional args
161 * DESCRIPTION: Print "ACPI Warning" message with module/line/version info
163 ******************************************************************************/
165 void ACPI_INTERNAL_VAR_XFACE
167 const char *ModuleName
,
175 ACPI_MSG_REDIRECT_BEGIN
;
176 AcpiOsPrintf (ACPI_MSG_WARNING
);
178 va_start (ArgList
, Format
);
179 AcpiOsVprintf (Format
, ArgList
);
183 ACPI_MSG_REDIRECT_END
;
186 ACPI_EXPORT_SYMBOL (AcpiWarning
)
189 /*******************************************************************************
193 * PARAMETERS: ModuleName - Caller's module name (for error output)
194 * LineNumber - Caller's line number (for error output)
195 * Format - Printf format string + additional args
199 * DESCRIPTION: Print generic "ACPI:" information message. There is no
200 * module/line/version info in order to keep the message simple.
202 * TBD: ModuleName and LineNumber args are not needed, should be removed.
204 ******************************************************************************/
206 void ACPI_INTERNAL_VAR_XFACE
214 ACPI_MSG_REDIRECT_BEGIN
;
215 AcpiOsPrintf (ACPI_MSG_INFO
);
217 va_start (ArgList
, Format
);
218 AcpiOsVprintf (Format
, ArgList
);
222 ACPI_MSG_REDIRECT_END
;
225 ACPI_EXPORT_SYMBOL (AcpiInfo
)
228 /*******************************************************************************
230 * FUNCTION: AcpiBiosError
232 * PARAMETERS: ModuleName - Caller's module name (for error output)
233 * LineNumber - Caller's line number (for error output)
234 * Format - Printf format string + additional args
238 * DESCRIPTION: Print "ACPI Firmware Error" message with module/line/version
241 ******************************************************************************/
243 void ACPI_INTERNAL_VAR_XFACE
245 const char *ModuleName
,
253 ACPI_MSG_REDIRECT_BEGIN
;
254 AcpiOsPrintf (ACPI_MSG_BIOS_ERROR
);
256 va_start (ArgList
, Format
);
257 AcpiOsVprintf (Format
, ArgList
);
261 ACPI_MSG_REDIRECT_END
;
264 ACPI_EXPORT_SYMBOL (AcpiBiosError
)
267 /*******************************************************************************
269 * FUNCTION: AcpiBiosWarning
271 * PARAMETERS: ModuleName - Caller's module name (for error output)
272 * LineNumber - Caller's line number (for error output)
273 * Format - Printf format string + additional args
277 * DESCRIPTION: Print "ACPI Firmware Warning" message with module/line/version
280 ******************************************************************************/
282 void ACPI_INTERNAL_VAR_XFACE
284 const char *ModuleName
,
292 ACPI_MSG_REDIRECT_BEGIN
;
293 AcpiOsPrintf (ACPI_MSG_BIOS_WARNING
);
295 va_start (ArgList
, Format
);
296 AcpiOsVprintf (Format
, ArgList
);
300 ACPI_MSG_REDIRECT_END
;
303 ACPI_EXPORT_SYMBOL (AcpiBiosWarning
)
305 #endif /* ACPI_NO_ERROR_MESSAGES */