blob: 664f09e3b95870ab07f986d94158e19a9713e134 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <amdblocks/chip.h>
#include <device/device.h>
#include <static.h>
#include "chip.h"
const struct soc_amd_common_config *soc_get_common_config(void)
{
const struct soc_amd_phoenix_config *cfg = config_of_soc();
return &cfg->common_config;
}
|