hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/acpi/acpica/acnamesp.h
....@@ -3,7 +3,7 @@
33 *
44 * Name: acnamesp.h - Namespace subcomponent prototypes and defines
55 *
6
- * Copyright (C) 2000 - 2018, Intel Corp.
6
+ * Copyright (C) 2000 - 2020, Intel Corp.
77 *
88 *****************************************************************************/
99
....@@ -34,6 +34,7 @@
3434 #define ACPI_NS_TEMPORARY 0x0040
3535 #define ACPI_NS_OVERRIDE_IF_FOUND 0x0080
3636 #define ACPI_NS_EARLY_INIT 0x0100
37
+#define ACPI_NS_PREFIX_MUST_EXIST 0x0200
3738
3839 /* Flags for acpi_ns_walk_namespace */
3940
....@@ -206,8 +207,6 @@
206207 */
207208 acpi_status acpi_ns_evaluate(struct acpi_evaluate_info *info);
208209
209
-void acpi_ns_exec_module_code_list(void);
210
-
211210 /*
212211 * nsarguments - Argument count/type checking for predefined/reserved names
213212 */
....@@ -257,6 +256,8 @@
257256 acpi_ns_build_normalized_path(struct acpi_namespace_node *node,
258257 char *full_path, u32 path_size, u8 no_trailing);
259258
259
+void acpi_ns_normalize_pathname(char *original_path);
260
+
260261 char *acpi_ns_get_normalized_pathname(struct acpi_namespace_node *node,
261262 u8 no_trailing);
262263