diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-07-29 10:47:02 +0200 |
---|---|---|
committer | Arthur Heymans <arthur@aheymans.xyz> | 2022-11-12 14:45:22 +0000 |
commit | e55aa0bc8f615d796794c89f5d86d309fe7fa18c (patch) | |
tree | 742290ff9a10a87c20bd3fb78606ab46ae37d915 /src/soc/intel/meteorlake/systemagent.c | |
parent | d4dfc21f70616bc97191969aa2b6d0196a525fce (diff) |
soc/intel/meteorlake: Fix set but unused variable
Clang complains about this.
Change-Id: Ibe1de3057c17b4aa8ecbd87fac598e43294584e3
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66264
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel/meteorlake/systemagent.c')
-rw-r--r-- | src/soc/intel/meteorlake/systemagent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/intel/meteorlake/systemagent.c b/src/soc/intel/meteorlake/systemagent.c index 675f9fb2fa..c6c1ada050 100644 --- a/src/soc/intel/meteorlake/systemagent.c +++ b/src/soc/intel/meteorlake/systemagent.c @@ -83,6 +83,8 @@ void soc_systemagent_init(struct device *dev) return; } + /* Remove once commented line below is enabled */ + (void)soc_config; /* UPDATEME: Need to enable later */ //set_power_limits(MOBILE_SKU_PL1_TIME_SEC, soc_config); } |