blob: 5175db5d2a5b73528366bfb70753544e12f22441 (
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 __SUPERIO_ASPEED__AST2400_CHIP_H__
#define __SUPERIO_ASPEED__AST2400_CHIP_H__
struct superio_aspeed_ast2400_config {
/* On AST2500 only 1: ESPI, 0: LPC */
bool use_espi;
};
#endif /* __SUPERIO_ASPEED__AST2400_CHIP_H__ */
|