blob: ad1c302d2149924e27b9dd300066aa38b8afeddf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* This file is part of the coreboot project. */
#ifndef SUPERIO_NUVOTON_NCT5104D_CHIP_H
#define SUPERIO_NUVOTON_NCT5104D_CHIP_H
struct superio_nuvoton_nct5104d_config {
u8 irq_trigger_type;
u8 reset_gpios;
};
#endif
|