summaryrefslogtreecommitdiffstats
path: root/drivers/platform/wmi/internal.h
blob: 9a39ffa31ad156916cf4a115e09ccd2e0f128319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Internal interfaces used by the WMI core.
 *
 * Copyright (C) 2025 Armin Wolf <W_Armin@gmx.de>
 */

#ifndef _WMI_INTERNAL_H_
#define _WMI_INTERNAL_H_

union acpi_object;
struct wmi_buffer;

int wmi_unmarshal_acpi_object(const union acpi_object *obj, struct wmi_buffer *buffer);
int wmi_marshal_string(const struct wmi_buffer *buffer, struct acpi_buffer *out);

#endif /* _WMI_INTERNAL_H_ */