12 lines
273 B
C
12 lines
273 B
C
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
||
|
#include <amdblocks/chip.h>
|
||
|
#include <device/device.h>
|
||
|
#include "chip.h"
|
||
|
|
||
|
const struct soc_amd_common_config *soc_get_common_config()
|
||
|
{
|
||
|
const struct soc_amd_picasso_config *cfg = config_of_soc();
|
||
|
return &cfg->common_config;
|
||
|
}
|