mirror of
https://github.com/torvalds/linux.git
synced 2026-04-27 19:12:29 -04:00
WMI strings are encoded using UTF16-LE characters, forcing WMI drivers to manually convert them to/from standard UTF8 strings. Add a two helper functions for those tasks. Signed-off-by: Armin Wolf <W_Armin@gmx.de> Link: https://patch.msgid.link/20260116204116.4030-4-W_Armin@gmx.de Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
12 lines
212 B
Makefile
12 lines
212 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Makefile for linux/drivers/platform/wmi
|
|
# ACPI WMI core
|
|
#
|
|
|
|
wmi-y := core.o marshalling.o string.o
|
|
obj-$(CONFIG_ACPI_WMI) += wmi.o
|
|
|
|
# Unit tests
|
|
obj-y += tests/
|