diff options
Diffstat (limited to 'src/soc/amd/cezanne/root_complex.c')
-rw-r--r-- | src/soc/amd/cezanne/root_complex.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/soc/amd/cezanne/root_complex.c b/src/soc/amd/cezanne/root_complex.c index c67a6f7481..77a94f52d7 100644 --- a/src/soc/amd/cezanne/root_complex.c +++ b/src/soc/amd/cezanne/root_complex.c @@ -186,7 +186,7 @@ static void acipgen_dptci(void) { const struct soc_amd_cezanne_config *config = config_of_soc(); - if (!config->dptc_tablet_mode_enable) + if (!config->dptc_enable) return; /* DPTC is enabled. Always fill out the default DPTC values. */ @@ -195,15 +195,6 @@ static void acipgen_dptci(void) config->fast_ppt_limit_mW, config->slow_ppt_limit_mW); acpigen_write_alib_dptc_default((uint8_t *)&default_input, sizeof(default_input)); - - /* Tablet Mode */ - struct dptc_input tablet_mode_input = DPTC_INPUTS( - config->thermctl_limit_tablet_mode_degreeC, - config->sustained_power_limit_tablet_mode_mW, - config->fast_ppt_limit_tablet_mode_mW, - config->slow_ppt_limit_tablet_mode_mW); - acpigen_write_alib_dptc_tablet((uint8_t *)&tablet_mode_input, - sizeof(tablet_mode_input)); } static void root_complex_fill_ssdt(const struct device *device) |