blob: c51c12b6e391f1673285a3f8e045f8326166811c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef __ARCH_ACPIGEN_DSM_H__
#define __ARCH_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 /* __ARCH_ACPIGEN_DSM_H__ */
|