.. | .. |
---|
3 | 3 | * |
---|
4 | 4 | * Name: acutils.h -- prototypes for the common (subsystem-wide) procedures |
---|
5 | 5 | * |
---|
6 | | - * Copyright (C) 2000 - 2018, Intel Corp. |
---|
| 6 | + * Copyright (C) 2000 - 2020, Intel Corp. |
---|
7 | 7 | * |
---|
8 | 8 | *****************************************************************************/ |
---|
9 | 9 | |
---|
.. | .. |
---|
142 | 142 | |
---|
143 | 143 | /* acpi_ut_dump_buffer */ |
---|
144 | 144 | |
---|
145 | | -#define DB_BYTE_DISPLAY 1 |
---|
146 | | -#define DB_WORD_DISPLAY 2 |
---|
147 | | -#define DB_DWORD_DISPLAY 4 |
---|
148 | | -#define DB_QWORD_DISPLAY 8 |
---|
| 145 | +#define DB_BYTE_DISPLAY 0x01 |
---|
| 146 | +#define DB_WORD_DISPLAY 0x02 |
---|
| 147 | +#define DB_DWORD_DISPLAY 0x04 |
---|
| 148 | +#define DB_QWORD_DISPLAY 0x08 |
---|
| 149 | +#define DB_DISPLAY_DATA_ONLY 0x10 |
---|
149 | 150 | |
---|
150 | 151 | /* |
---|
151 | 152 | * utascii - ASCII utilities |
---|
.. | .. |
---|
686 | 687 | /* |
---|
687 | 688 | * utxferror - various error/warning output functions |
---|
688 | 689 | */ |
---|
| 690 | +ACPI_PRINTF_LIKE(5) |
---|
689 | 691 | void ACPI_INTERNAL_VAR_XFACE |
---|
690 | 692 | acpi_ut_predefined_warning(const char *module_name, |
---|
691 | 693 | u32 line_number, |
---|
692 | 694 | char *pathname, |
---|
693 | | - u8 node_flags, const char *format, ...); |
---|
| 695 | + u16 node_flags, const char *format, ...); |
---|
694 | 696 | |
---|
| 697 | +ACPI_PRINTF_LIKE(5) |
---|
695 | 698 | void ACPI_INTERNAL_VAR_XFACE |
---|
696 | 699 | acpi_ut_predefined_info(const char *module_name, |
---|
697 | 700 | u32 line_number, |
---|
698 | | - char *pathname, u8 node_flags, const char *format, ...); |
---|
| 701 | + char *pathname, |
---|
| 702 | + u16 node_flags, const char *format, ...); |
---|
699 | 703 | |
---|
| 704 | +ACPI_PRINTF_LIKE(5) |
---|
700 | 705 | void ACPI_INTERNAL_VAR_XFACE |
---|
701 | 706 | acpi_ut_predefined_bios_error(const char *module_name, |
---|
702 | 707 | u32 line_number, |
---|
703 | 708 | char *pathname, |
---|
704 | | - u8 node_flags, const char *format, ...); |
---|
| 709 | + u16 node_flags, const char *format, ...); |
---|
705 | 710 | |
---|
706 | 711 | void |
---|
707 | 712 | acpi_ut_prefixed_namespace_error(const char *module_name, |
---|