diff --git a/src/soc/intel/alderlake/romstage/ux.c b/src/soc/intel/alderlake/romstage/ux.c index 4e647275ce..03e6acdaa5 100644 --- a/src/soc/intel/alderlake/romstage/ux.c +++ b/src/soc/intel/alderlake/romstage/ux.c @@ -32,3 +32,8 @@ bool ux_inform_user_of_update_operation(const char *name) { return ux_inform_user_of_operation(name, UX_LOCALE_MSG_MEMORY_TRAINING); } + +bool ux_inform_user_of_poweroff_operation(const char *name) +{ + return ux_inform_user_of_operation(name, UX_LOCALE_MSG_LOW_BATTERY); +} diff --git a/src/soc/intel/alderlake/romstage/ux.h b/src/soc/intel/alderlake/romstage/ux.h index 14c10e7ffd..c556c63df1 100644 --- a/src/soc/intel/alderlake/romstage/ux.h +++ b/src/soc/intel/alderlake/romstage/ux.h @@ -4,5 +4,6 @@ #define _SOC_INTEL_ALDERLAKE_ROMSTAGE_UX_H_ bool ux_inform_user_of_update_operation(const char *name); +bool ux_inform_user_of_poweroff_operation(const char *name); #endif /* _SOC_INTEL_ALDERLAKE_ROMSTAGE_UX_H_ */