blob: 514755c3f631720d1aaaebb7cf1fc4093a7a2eca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef _SB800_CFG_H_
#define _SB800_CFG_H_
#include <stdint.h>
/**
* @brief South Bridge CIMx configuration
*
*/
void sb800_cimx_config(AMDSBCFG *sb_cfg);
#endif
|