diff options
Diffstat (limited to 'drivers/acpi/utilities')
-rw-r--r-- | drivers/acpi/utilities/utalloc.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utcache.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utcopy.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utdebug.c | 95 | ||||
-rw-r--r-- | drivers/acpi/utilities/utdelete.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/uteval.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utglobal.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utinit.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utmath.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utmisc.c | 21 | ||||
-rw-r--r-- | drivers/acpi/utilities/utmutex.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utobject.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utresrc.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utstate.c | 1 | ||||
-rw-r--r-- | drivers/acpi/utilities/utxface.c | 1 |
15 files changed, 71 insertions, 58 deletions
diff --git a/drivers/acpi/utilities/utalloc.c b/drivers/acpi/utilities/utalloc.c index 241c535c1753..2a017b29aa41 100644 --- a/drivers/acpi/utilities/utalloc.c +++ b/drivers/acpi/utilities/utalloc.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | #include <acpi/acdebug.h> | 46 | #include <acpi/acdebug.h> |
46 | 47 | ||
47 | #define _COMPONENT ACPI_UTILITIES | 48 | #define _COMPONENT ACPI_UTILITIES |
diff --git a/drivers/acpi/utilities/utcache.c b/drivers/acpi/utilities/utcache.c index 245fa80cf600..1e549fd574a0 100644 --- a/drivers/acpi/utilities/utcache.c +++ b/drivers/acpi/utilities/utcache.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | 46 | ||
46 | #define _COMPONENT ACPI_UTILITIES | 47 | #define _COMPONENT ACPI_UTILITIES |
47 | ACPI_MODULE_NAME("utcache") | 48 | ACPI_MODULE_NAME("utcache") |
diff --git a/drivers/acpi/utilities/utcopy.c b/drivers/acpi/utilities/utcopy.c index 5b2f7c27b705..e6f3002312e5 100644 --- a/drivers/acpi/utilities/utcopy.c +++ b/drivers/acpi/utilities/utcopy.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | #include <acpi/acnamesp.h> | 46 | #include <acpi/acnamesp.h> |
46 | 47 | ||
47 | 48 | ||
diff --git a/drivers/acpi/utilities/utdebug.c b/drivers/acpi/utilities/utdebug.c index fd66ecb6741e..9a3538c497d0 100644 --- a/drivers/acpi/utilities/utdebug.c +++ b/drivers/acpi/utilities/utdebug.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | 46 | ||
46 | #define _COMPONENT ACPI_UTILITIES | 47 | #define _COMPONENT ACPI_UTILITIES |
47 | ACPI_MODULE_NAME("utdebug") | 48 | ACPI_MODULE_NAME("utdebug") |
@@ -136,7 +137,7 @@ static const char *acpi_ut_trim_function_name(const char *function_name) | |||
136 | 137 | ||
137 | /******************************************************************************* | 138 | /******************************************************************************* |
138 | * | 139 | * |
139 | * FUNCTION: acpi_ut_debug_print | 140 | * FUNCTION: acpi_debug_print |
140 | * | 141 | * |
141 | * PARAMETERS: requested_debug_level - Requested debug print level | 142 | * PARAMETERS: requested_debug_level - Requested debug print level |
142 | * line_number - Caller's line number (for error output) | 143 | * line_number - Caller's line number (for error output) |
@@ -154,11 +155,11 @@ static const char *acpi_ut_trim_function_name(const char *function_name) | |||
154 | ******************************************************************************/ | 155 | ******************************************************************************/ |
155 | 156 | ||
156 | void ACPI_INTERNAL_VAR_XFACE | 157 | void ACPI_INTERNAL_VAR_XFACE |
157 | acpi_ut_debug_print(u32 requested_debug_level, | 158 | acpi_debug_print(u32 requested_debug_level, |
158 | u32 line_number, | 159 | u32 line_number, |
159 | const char *function_name, | 160 | const char *function_name, |
160 | const char *module_name, | 161 | const char *module_name, |
161 | u32 component_id, const char *format, ...) | 162 | u32 component_id, const char *format, ...) |
162 | { | 163 | { |
163 | acpi_thread_id thread_id; | 164 | acpi_thread_id thread_id; |
164 | va_list args; | 165 | va_list args; |
@@ -205,11 +206,11 @@ acpi_ut_debug_print(u32 requested_debug_level, | |||
205 | va_end(args); | 206 | va_end(args); |
206 | } | 207 | } |
207 | 208 | ||
208 | ACPI_EXPORT_SYMBOL(acpi_ut_debug_print) | 209 | ACPI_EXPORT_SYMBOL(acpi_debug_print) |
209 | 210 | ||
210 | /******************************************************************************* | 211 | /******************************************************************************* |
211 | * | 212 | * |
212 | * FUNCTION: acpi_ut_debug_print_raw | 213 | * FUNCTION: acpi_debug_print_raw |
213 | * | 214 | * |
214 | * PARAMETERS: requested_debug_level - Requested debug print level | 215 | * PARAMETERS: requested_debug_level - Requested debug print level |
215 | * line_number - Caller's line number | 216 | * line_number - Caller's line number |
@@ -226,11 +227,11 @@ ACPI_EXPORT_SYMBOL(acpi_ut_debug_print) | |||
226 | * | 227 | * |
227 | ******************************************************************************/ | 228 | ******************************************************************************/ |
228 | void ACPI_INTERNAL_VAR_XFACE | 229 | void ACPI_INTERNAL_VAR_XFACE |
229 | acpi_ut_debug_print_raw(u32 requested_debug_level, | 230 | acpi_debug_print_raw(u32 requested_debug_level, |
230 | u32 line_number, | 231 | u32 line_number, |
231 | const char *function_name, | 232 | const char *function_name, |
232 | const char *module_name, | 233 | const char *module_name, |
233 | u32 component_id, const char *format, ...) | 234 | u32 component_id, const char *format, ...) |
234 | { | 235 | { |
235 | va_list args; | 236 | va_list args; |
236 | 237 | ||
@@ -244,7 +245,7 @@ acpi_ut_debug_print_raw(u32 requested_debug_level, | |||
244 | va_end(args); | 245 | va_end(args); |
245 | } | 246 | } |
246 | 247 | ||
247 | ACPI_EXPORT_SYMBOL(acpi_ut_debug_print_raw) | 248 | ACPI_EXPORT_SYMBOL(acpi_debug_print_raw) |
248 | 249 | ||
249 | /******************************************************************************* | 250 | /******************************************************************************* |
250 | * | 251 | * |
@@ -270,9 +271,9 @@ acpi_ut_trace(u32 line_number, | |||
270 | acpi_gbl_nesting_level++; | 271 | acpi_gbl_nesting_level++; |
271 | acpi_ut_track_stack_ptr(); | 272 | acpi_ut_track_stack_ptr(); |
272 | 273 | ||
273 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 274 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
274 | line_number, function_name, module_name, | 275 | line_number, function_name, module_name, component_id, |
275 | component_id, "%s\n", acpi_gbl_fn_entry_str); | 276 | "%s\n", acpi_gbl_fn_entry_str); |
276 | } | 277 | } |
277 | 278 | ||
278 | ACPI_EXPORT_SYMBOL(acpi_ut_trace) | 279 | ACPI_EXPORT_SYMBOL(acpi_ut_trace) |
@@ -301,10 +302,9 @@ acpi_ut_trace_ptr(u32 line_number, | |||
301 | acpi_gbl_nesting_level++; | 302 | acpi_gbl_nesting_level++; |
302 | acpi_ut_track_stack_ptr(); | 303 | acpi_ut_track_stack_ptr(); |
303 | 304 | ||
304 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 305 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
305 | line_number, function_name, module_name, | 306 | line_number, function_name, module_name, component_id, |
306 | component_id, "%s %p\n", acpi_gbl_fn_entry_str, | 307 | "%s %p\n", acpi_gbl_fn_entry_str, pointer); |
307 | pointer); | ||
308 | } | 308 | } |
309 | 309 | ||
310 | /******************************************************************************* | 310 | /******************************************************************************* |
@@ -333,10 +333,9 @@ acpi_ut_trace_str(u32 line_number, | |||
333 | acpi_gbl_nesting_level++; | 333 | acpi_gbl_nesting_level++; |
334 | acpi_ut_track_stack_ptr(); | 334 | acpi_ut_track_stack_ptr(); |
335 | 335 | ||
336 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 336 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
337 | line_number, function_name, module_name, | 337 | line_number, function_name, module_name, component_id, |
338 | component_id, "%s %s\n", acpi_gbl_fn_entry_str, | 338 | "%s %s\n", acpi_gbl_fn_entry_str, string); |
339 | string); | ||
340 | } | 339 | } |
341 | 340 | ||
342 | /******************************************************************************* | 341 | /******************************************************************************* |
@@ -365,10 +364,9 @@ acpi_ut_trace_u32(u32 line_number, | |||
365 | acpi_gbl_nesting_level++; | 364 | acpi_gbl_nesting_level++; |
366 | acpi_ut_track_stack_ptr(); | 365 | acpi_ut_track_stack_ptr(); |
367 | 366 | ||
368 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 367 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
369 | line_number, function_name, module_name, | 368 | line_number, function_name, module_name, component_id, |
370 | component_id, "%s %08X\n", acpi_gbl_fn_entry_str, | 369 | "%s %08X\n", acpi_gbl_fn_entry_str, integer); |
371 | integer); | ||
372 | } | 370 | } |
373 | 371 | ||
374 | /******************************************************************************* | 372 | /******************************************************************************* |
@@ -393,9 +391,9 @@ acpi_ut_exit(u32 line_number, | |||
393 | const char *module_name, u32 component_id) | 391 | const char *module_name, u32 component_id) |
394 | { | 392 | { |
395 | 393 | ||
396 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 394 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
397 | line_number, function_name, module_name, | 395 | line_number, function_name, module_name, component_id, |
398 | component_id, "%s\n", acpi_gbl_fn_exit_str); | 396 | "%s\n", acpi_gbl_fn_exit_str); |
399 | 397 | ||
400 | acpi_gbl_nesting_level--; | 398 | acpi_gbl_nesting_level--; |
401 | } | 399 | } |
@@ -426,17 +424,16 @@ acpi_ut_status_exit(u32 line_number, | |||
426 | { | 424 | { |
427 | 425 | ||
428 | if (ACPI_SUCCESS(status)) { | 426 | if (ACPI_SUCCESS(status)) { |
429 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 427 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
430 | line_number, function_name, module_name, | 428 | line_number, function_name, module_name, |
431 | component_id, "%s %s\n", | 429 | component_id, "%s %s\n", acpi_gbl_fn_exit_str, |
432 | acpi_gbl_fn_exit_str, | 430 | acpi_format_exception(status)); |
433 | acpi_format_exception(status)); | ||
434 | } else { | 431 | } else { |
435 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 432 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
436 | line_number, function_name, module_name, | 433 | line_number, function_name, module_name, |
437 | component_id, "%s ****Exception****: %s\n", | 434 | component_id, "%s ****Exception****: %s\n", |
438 | acpi_gbl_fn_exit_str, | 435 | acpi_gbl_fn_exit_str, |
439 | acpi_format_exception(status)); | 436 | acpi_format_exception(status)); |
440 | } | 437 | } |
441 | 438 | ||
442 | acpi_gbl_nesting_level--; | 439 | acpi_gbl_nesting_level--; |
@@ -467,10 +464,10 @@ acpi_ut_value_exit(u32 line_number, | |||
467 | u32 component_id, acpi_integer value) | 464 | u32 component_id, acpi_integer value) |
468 | { | 465 | { |
469 | 466 | ||
470 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 467 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
471 | line_number, function_name, module_name, | 468 | line_number, function_name, module_name, component_id, |
472 | component_id, "%s %8.8X%8.8X\n", | 469 | "%s %8.8X%8.8X\n", acpi_gbl_fn_exit_str, |
473 | acpi_gbl_fn_exit_str, ACPI_FORMAT_UINT64(value)); | 470 | ACPI_FORMAT_UINT64(value)); |
474 | 471 | ||
475 | acpi_gbl_nesting_level--; | 472 | acpi_gbl_nesting_level--; |
476 | } | 473 | } |
@@ -499,9 +496,9 @@ acpi_ut_ptr_exit(u32 line_number, | |||
499 | const char *module_name, u32 component_id, u8 *ptr) | 496 | const char *module_name, u32 component_id, u8 *ptr) |
500 | { | 497 | { |
501 | 498 | ||
502 | acpi_ut_debug_print(ACPI_LV_FUNCTIONS, | 499 | acpi_debug_print(ACPI_LV_FUNCTIONS, |
503 | line_number, function_name, module_name, | 500 | line_number, function_name, module_name, component_id, |
504 | component_id, "%s %p\n", acpi_gbl_fn_exit_str, ptr); | 501 | "%s %p\n", acpi_gbl_fn_exit_str, ptr); |
505 | 502 | ||
506 | acpi_gbl_nesting_level--; | 503 | acpi_gbl_nesting_level--; |
507 | } | 504 | } |
diff --git a/drivers/acpi/utilities/utdelete.c b/drivers/acpi/utilities/utdelete.c index d197c6b29e17..5b4e3b1a7523 100644 --- a/drivers/acpi/utilities/utdelete.c +++ b/drivers/acpi/utilities/utdelete.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | #include <acpi/acinterp.h> | 46 | #include <acpi/acinterp.h> |
46 | #include <acpi/acnamesp.h> | 47 | #include <acpi/acnamesp.h> |
47 | #include <acpi/acevents.h> | 48 | #include <acpi/acevents.h> |
diff --git a/drivers/acpi/utilities/uteval.c b/drivers/acpi/utilities/uteval.c index df2b511b595a..e1e438cd54a9 100644 --- a/drivers/acpi/utilities/uteval.c +++ b/drivers/acpi/utilities/uteval.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | #include <acpi/acnamesp.h> | 46 | #include <acpi/acnamesp.h> |
46 | #include <acpi/acinterp.h> | 47 | #include <acpi/acinterp.h> |
47 | 48 | ||
diff --git a/drivers/acpi/utilities/utglobal.c b/drivers/acpi/utilities/utglobal.c index 06112bf976dc..3e28d8c4045d 100644 --- a/drivers/acpi/utilities/utglobal.c +++ b/drivers/acpi/utilities/utglobal.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #define DEFINE_ACPI_GLOBALS | 44 | #define DEFINE_ACPI_GLOBALS |
45 | 45 | ||
46 | #include <acpi/acpi.h> | 46 | #include <acpi/acpi.h> |
47 | #include <acpi/accommon.h> | ||
47 | #include <acpi/acnamesp.h> | 48 | #include <acpi/acnamesp.h> |
48 | 49 | ||
49 | #define _COMPONENT ACPI_UTILITIES | 50 | #define _COMPONENT ACPI_UTILITIES |
diff --git a/drivers/acpi/utilities/utinit.c b/drivers/acpi/utilities/utinit.c index cae515fc02d3..9316ec36a836 100644 --- a/drivers/acpi/utilities/utinit.c +++ b/drivers/acpi/utilities/utinit.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | #include <acpi/acnamesp.h> | 46 | #include <acpi/acnamesp.h> |
46 | #include <acpi/acevents.h> | 47 | #include <acpi/acevents.h> |
47 | #include <acpi/actables.h> | 48 | #include <acpi/actables.h> |
diff --git a/drivers/acpi/utilities/utmath.c b/drivers/acpi/utilities/utmath.c index c927324fdd26..616d7b271c9a 100644 --- a/drivers/acpi/utilities/utmath.c +++ b/drivers/acpi/utilities/utmath.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | 46 | ||
46 | #define _COMPONENT ACPI_UTILITIES | 47 | #define _COMPONENT ACPI_UTILITIES |
47 | ACPI_MODULE_NAME("utmath") | 48 | ACPI_MODULE_NAME("utmath") |
diff --git a/drivers/acpi/utilities/utmisc.c b/drivers/acpi/utilities/utmisc.c index 9089a158a874..8f8b407142ee 100644 --- a/drivers/acpi/utilities/utmisc.c +++ b/drivers/acpi/utilities/utmisc.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <linux/module.h> | 44 | #include <linux/module.h> |
45 | 45 | ||
46 | #include <acpi/acpi.h> | 46 | #include <acpi/acpi.h> |
47 | #include <acpi/accommon.h> | ||
47 | #include <acpi/acnamesp.h> | 48 | #include <acpi/acnamesp.h> |
48 | 49 | ||
49 | #define _COMPONENT ACPI_UTILITIES | 50 | #define _COMPONENT ACPI_UTILITIES |
@@ -1016,7 +1017,7 @@ acpi_ut_walk_package_tree(union acpi_operand_object * source_object, | |||
1016 | 1017 | ||
1017 | /******************************************************************************* | 1018 | /******************************************************************************* |
1018 | * | 1019 | * |
1019 | * FUNCTION: acpi_ut_error, acpi_ut_warning, acpi_ut_info | 1020 | * FUNCTION: acpi_error, acpi_exception, acpi_warning, acpi_info |
1020 | * | 1021 | * |
1021 | * PARAMETERS: module_name - Caller's module name (for error output) | 1022 | * PARAMETERS: module_name - Caller's module name (for error output) |
1022 | * line_number - Caller's line number (for error output) | 1023 | * line_number - Caller's line number (for error output) |
@@ -1029,7 +1030,7 @@ acpi_ut_walk_package_tree(union acpi_operand_object * source_object, | |||
1029 | ******************************************************************************/ | 1030 | ******************************************************************************/ |
1030 | 1031 | ||
1031 | void ACPI_INTERNAL_VAR_XFACE | 1032 | void ACPI_INTERNAL_VAR_XFACE |
1032 | acpi_ut_error(const char *module_name, u32 line_number, const char *format, ...) | 1033 | acpi_error(const char *module_name, u32 line_number, const char *format, ...) |
1033 | { | 1034 | { |
1034 | va_list args; | 1035 | va_list args; |
1035 | 1036 | ||
@@ -1042,8 +1043,8 @@ acpi_ut_error(const char *module_name, u32 line_number, const char *format, ...) | |||
1042 | } | 1043 | } |
1043 | 1044 | ||
1044 | void ACPI_INTERNAL_VAR_XFACE | 1045 | void ACPI_INTERNAL_VAR_XFACE |
1045 | acpi_ut_exception(const char *module_name, | 1046 | acpi_exception(const char *module_name, |
1046 | u32 line_number, acpi_status status, const char *format, ...) | 1047 | u32 line_number, acpi_status status, const char *format, ...) |
1047 | { | 1048 | { |
1048 | va_list args; | 1049 | va_list args; |
1049 | 1050 | ||
@@ -1056,11 +1057,8 @@ acpi_ut_exception(const char *module_name, | |||
1056 | va_end(args); | 1057 | va_end(args); |
1057 | } | 1058 | } |
1058 | 1059 | ||
1059 | EXPORT_SYMBOL(acpi_ut_exception); | ||
1060 | |||
1061 | void ACPI_INTERNAL_VAR_XFACE | 1060 | void ACPI_INTERNAL_VAR_XFACE |
1062 | acpi_ut_warning(const char *module_name, | 1061 | acpi_warning(const char *module_name, u32 line_number, const char *format, ...) |
1063 | u32 line_number, const char *format, ...) | ||
1064 | { | 1062 | { |
1065 | va_list args; | 1063 | va_list args; |
1066 | 1064 | ||
@@ -1073,7 +1071,7 @@ acpi_ut_warning(const char *module_name, | |||
1073 | } | 1071 | } |
1074 | 1072 | ||
1075 | void ACPI_INTERNAL_VAR_XFACE | 1073 | void ACPI_INTERNAL_VAR_XFACE |
1076 | acpi_ut_info(const char *module_name, u32 line_number, const char *format, ...) | 1074 | acpi_info(const char *module_name, u32 line_number, const char *format, ...) |
1077 | { | 1075 | { |
1078 | va_list args; | 1076 | va_list args; |
1079 | 1077 | ||
@@ -1088,3 +1086,8 @@ acpi_ut_info(const char *module_name, u32 line_number, const char *format, ...) | |||
1088 | acpi_os_printf("\n"); | 1086 | acpi_os_printf("\n"); |
1089 | va_end(args); | 1087 | va_end(args); |
1090 | } | 1088 | } |
1089 | |||
1090 | ACPI_EXPORT_SYMBOL(acpi_error) | ||
1091 | ACPI_EXPORT_SYMBOL(acpi_exception) | ||
1092 | ACPI_EXPORT_SYMBOL(acpi_warning) | ||
1093 | ACPI_EXPORT_SYMBOL(acpi_info) | ||
diff --git a/drivers/acpi/utilities/utmutex.c b/drivers/acpi/utilities/utmutex.c index 7331dde9e1b3..7b48ba3f3f8a 100644 --- a/drivers/acpi/utilities/utmutex.c +++ b/drivers/acpi/utilities/utmutex.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | 46 | ||
46 | #define _COMPONENT ACPI_UTILITIES | 47 | #define _COMPONENT ACPI_UTILITIES |
47 | ACPI_MODULE_NAME("utmutex") | 48 | ACPI_MODULE_NAME("utmutex") |
diff --git a/drivers/acpi/utilities/utobject.c b/drivers/acpi/utilities/utobject.c index c354e7a42bcd..964b23c11610 100644 --- a/drivers/acpi/utilities/utobject.c +++ b/drivers/acpi/utilities/utobject.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | #include <acpi/acnamesp.h> | 46 | #include <acpi/acnamesp.h> |
46 | 47 | ||
47 | #define _COMPONENT ACPI_UTILITIES | 48 | #define _COMPONENT ACPI_UTILITIES |
diff --git a/drivers/acpi/utilities/utresrc.c b/drivers/acpi/utilities/utresrc.c index c3e3e1308edc..0755c5cdbe18 100644 --- a/drivers/acpi/utilities/utresrc.c +++ b/drivers/acpi/utilities/utresrc.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | #include <acpi/amlresrc.h> | 46 | #include <acpi/amlresrc.h> |
46 | 47 | ||
47 | #define _COMPONENT ACPI_UTILITIES | 48 | #define _COMPONENT ACPI_UTILITIES |
diff --git a/drivers/acpi/utilities/utstate.c b/drivers/acpi/utilities/utstate.c index 63a6d3d77d88..54c3461e2f26 100644 --- a/drivers/acpi/utilities/utstate.c +++ b/drivers/acpi/utilities/utstate.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | 46 | ||
46 | #define _COMPONENT ACPI_UTILITIES | 47 | #define _COMPONENT ACPI_UTILITIES |
47 | ACPI_MODULE_NAME("utstate") | 48 | ACPI_MODULE_NAME("utstate") |
diff --git a/drivers/acpi/utilities/utxface.c b/drivers/acpi/utilities/utxface.c index 7ca8952eb1b8..5b27724a2749 100644 --- a/drivers/acpi/utilities/utxface.c +++ b/drivers/acpi/utilities/utxface.c | |||
@@ -42,6 +42,7 @@ | |||
42 | */ | 42 | */ |
43 | 43 | ||
44 | #include <acpi/acpi.h> | 44 | #include <acpi/acpi.h> |
45 | #include <acpi/accommon.h> | ||
45 | #include <acpi/acevents.h> | 46 | #include <acpi/acevents.h> |
46 | #include <acpi/acnamesp.h> | 47 | #include <acpi/acnamesp.h> |
47 | #include <acpi/acdebug.h> | 48 | #include <acpi/acdebug.h> |