blob: 5df7f304c941fdae9238581981f3b2fad8556a39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __ACPI_ACPIGEN_DSM_H__
#define __ACPI_ACPIGEN_DSM_H__
#include <stdint.h>
struct dsm_i2c_hid_config {
uint8_t hid_desc_reg_offset;
};
void acpigen_write_dsm_i2c_hid(struct dsm_i2c_hid_config *config);
#endif /* __ACPI_ACPIGEN_DSM_H__ */
|