1 /*******************************************************************************
3 * Module Name: utxferror - Various error/warning output functions
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2018, 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
46 #include <acpi/acpi.h>
49 #define _COMPONENT ACPI_UTILITIES
50 ACPI_MODULE_NAME("utxferror")
53 * This module is used for the in-kernel ACPICA as well as the ACPICA
56 #ifndef ACPI_NO_ERROR_MESSAGES /* Entire module */
57 /*******************************************************************************
59 * FUNCTION: acpi_error
61 * PARAMETERS: module_name - Caller's module name (for error output)
62 * line_number - Caller's line number (for error output)
63 * format - Printf format string + additional args
67 * DESCRIPTION: Print "ACPI Error" message with module/line/version info
69 ******************************************************************************/
70 void ACPI_INTERNAL_VAR_XFACE
71 acpi_error(const char *module_name
, u32 line_number
, const char *format
, ...)
75 ACPI_MSG_REDIRECT_BEGIN
;
76 acpi_os_printf(ACPI_MSG_ERROR
);
78 va_start(arg_list
, format
);
79 acpi_os_vprintf(format
, arg_list
);
83 ACPI_MSG_REDIRECT_END
;
86 ACPI_EXPORT_SYMBOL(acpi_error
)
88 /*******************************************************************************
90 * FUNCTION: acpi_exception
92 * PARAMETERS: module_name - Caller's module name (for error output)
93 * line_number - Caller's line number (for error output)
94 * status - Status value to be decoded/formatted
95 * format - Printf format string + additional args
99 * DESCRIPTION: Print an "ACPI Error" message with module/line/version
100 * info as well as decoded acpi_status.
102 ******************************************************************************/
103 void ACPI_INTERNAL_VAR_XFACE
104 acpi_exception(const char *module_name
,
105 u32 line_number
, acpi_status status
, const char *format
, ...)
109 ACPI_MSG_REDIRECT_BEGIN
;
111 /* For AE_OK, just print the message */
113 if (ACPI_SUCCESS(status
)) {
114 acpi_os_printf(ACPI_MSG_ERROR
);
117 acpi_os_printf(ACPI_MSG_ERROR
"%s, ",
118 acpi_format_exception(status
));
121 va_start(arg_list
, format
);
122 acpi_os_vprintf(format
, arg_list
);
126 ACPI_MSG_REDIRECT_END
;
129 ACPI_EXPORT_SYMBOL(acpi_exception
)
131 /*******************************************************************************
133 * FUNCTION: acpi_warning
135 * PARAMETERS: module_name - Caller's module name (for warning output)
136 * line_number - Caller's line number (for warning output)
137 * format - Printf format string + additional args
141 * DESCRIPTION: Print "ACPI Warning" message with module/line/version info
143 ******************************************************************************/
144 void ACPI_INTERNAL_VAR_XFACE
145 acpi_warning(const char *module_name
, u32 line_number
, const char *format
, ...)
149 ACPI_MSG_REDIRECT_BEGIN
;
150 acpi_os_printf(ACPI_MSG_WARNING
);
152 va_start(arg_list
, format
);
153 acpi_os_vprintf(format
, arg_list
);
157 ACPI_MSG_REDIRECT_END
;
160 ACPI_EXPORT_SYMBOL(acpi_warning
)
162 /*******************************************************************************
164 * FUNCTION: acpi_info
166 * PARAMETERS: format - Printf format string + additional args
170 * DESCRIPTION: Print generic "ACPI:" information message. There is no
171 * module/line/version info in order to keep the message simple.
173 ******************************************************************************/
174 void ACPI_INTERNAL_VAR_XFACE
acpi_info(const char *format
, ...)
178 ACPI_MSG_REDIRECT_BEGIN
;
179 acpi_os_printf(ACPI_MSG_INFO
);
181 va_start(arg_list
, format
);
182 acpi_os_vprintf(format
, arg_list
);
183 acpi_os_printf("\n");
186 ACPI_MSG_REDIRECT_END
;
189 ACPI_EXPORT_SYMBOL(acpi_info
)
191 /*******************************************************************************
193 * FUNCTION: acpi_bios_error
195 * PARAMETERS: module_name - Caller's module name (for error output)
196 * line_number - Caller's line number (for error output)
197 * format - Printf format string + additional args
201 * DESCRIPTION: Print "ACPI Firmware Error" message with module/line/version
204 ******************************************************************************/
205 void ACPI_INTERNAL_VAR_XFACE
206 acpi_bios_error(const char *module_name
,
207 u32 line_number
, const char *format
, ...)
211 ACPI_MSG_REDIRECT_BEGIN
;
212 acpi_os_printf(ACPI_MSG_BIOS_ERROR
);
214 va_start(arg_list
, format
);
215 acpi_os_vprintf(format
, arg_list
);
219 ACPI_MSG_REDIRECT_END
;
222 ACPI_EXPORT_SYMBOL(acpi_bios_error
)
224 /*******************************************************************************
226 * FUNCTION: acpi_bios_warning
228 * PARAMETERS: module_name - Caller's module name (for warning output)
229 * line_number - Caller's line number (for warning output)
230 * format - Printf format string + additional args
234 * DESCRIPTION: Print "ACPI Firmware Warning" message with module/line/version
237 ******************************************************************************/
238 void ACPI_INTERNAL_VAR_XFACE
239 acpi_bios_warning(const char *module_name
,
240 u32 line_number
, const char *format
, ...)
244 ACPI_MSG_REDIRECT_BEGIN
;
245 acpi_os_printf(ACPI_MSG_BIOS_WARNING
);
247 va_start(arg_list
, format
);
248 acpi_os_vprintf(format
, arg_list
);
252 ACPI_MSG_REDIRECT_END
;
255 ACPI_EXPORT_SYMBOL(acpi_bios_warning
)
256 #endif /* ACPI_NO_ERROR_MESSAGES */