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