blob: d21ccc005300b28a9a0a5e53b6098c87e7a6008d (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef CPLD_H
#define CPLD_H
unsigned int cpld_read_pcb_version(void);
void cpld_reset_bridge(void);
#endif
|