soc/amd/picasso: remove config_t typedef
Change-Id: Idc0061e7b88134ab17cb65429133cffd16ca5651 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48316 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
parent
0f058f68a2
commit
507fc03b19
|
@ -221,6 +221,4 @@ struct soc_amd_picasso_config {
|
|||
enum gpp_clk_req_setting gpp_clk_config[GPP_CLK_OUTPUT_COUNT];
|
||||
};
|
||||
|
||||
typedef struct soc_amd_picasso_config config_t;
|
||||
|
||||
#endif /* __PICASSO_CHIP_H__ */
|
||||
|
|
|
@ -90,7 +90,7 @@ static bool devtree_sata_dev_enabled(void)
|
|||
void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
|
||||
{
|
||||
FSP_M_CONFIG *mcfg = &mupd->FspmConfig;
|
||||
const config_t *config = config_of_soc();
|
||||
const struct soc_amd_picasso_config *config = config_of_soc();
|
||||
|
||||
mupd->FspmArchUpd.NvsBufferPtr = soc_fill_mrc_cache();
|
||||
|
||||
|
|
|
@ -195,7 +195,7 @@ static void dptc_call_alib(const char *buf_name, uint8_t *buffer, size_t size)
|
|||
|
||||
static void acipgen_dptci(void)
|
||||
{
|
||||
const config_t *config = config_of_soc();
|
||||
const struct soc_amd_picasso_config *config = config_of_soc();
|
||||
|
||||
if (!config->dptc_enable)
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue