aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/reset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/broadwell/reset.c')
-rw-r--r--src/soc/intel/broadwell/reset.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/soc/intel/broadwell/reset.c b/src/soc/intel/broadwell/reset.c
index ffd15e7308..5117b2917a 100644
--- a/src/soc/intel/broadwell/reset.c
+++ b/src/soc/intel/broadwell/reset.c
@@ -18,8 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include <arch/hlt.h>
#include <arch/io.h>
+#include <halt.h>
#include <reset.h>
#include <broadwell/reset.h>
@@ -45,7 +45,5 @@ void hard_reset(void)
void reset_system(void)
{
hard_reset();
- while (1) {
- hlt();
- }
+ halt();
}