diff --git a/src/soc/intel/common/reset.c b/src/soc/intel/common/reset.c index 08f36b6560..e9be1855b0 100644 --- a/src/soc/intel/common/reset.c +++ b/src/soc/intel/common/reset.c @@ -33,6 +33,7 @@ void WEAK reset_prepare(void) { /* do nothing */ } +#if IS_ENABLED(CONFIG_HAVE_HARD_RESET) void hard_reset(void) { reset_prepare(); @@ -41,6 +42,7 @@ void hard_reset(void) while (1) hlt(); } +#endif void soft_reset(void) {