blob: b67d73894584412814c7c8ef18739cfb65e5111d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef EC_LENOVO_PMH7_CHIP_H
#define EC_LENOVO_PMH7_CHIP_H
struct ec_lenovo_pmh7_config {
int backlight_enable:1;
int dock_event_enable:1;
};
#endif /* EC_LENOVO_PMH7_CHIP_H */
|