From 8780b77f05850f43c85a08f34e7fa9c4c78c7ad1 Mon Sep 17 00:00:00 2001 From: Andrey Petrov Date: Wed, 22 Jun 2016 23:39:08 -0700 Subject: [PATCH] UPSTREAM: soc/intel/common: Add prototype for global_reset() reset Add prototype for global_reset() that some SoCs need to provide. BUG=chrome-os-partner:54149 BRANCH=none TEST=none Change-Id: I8afe076b6f4f675b3c6a3ec0e4dd69f950baa4ef Signed-off-by: Andrey Petrov Reviewed-on: https://review.coreboot.org/15333 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin Reviewed-on: https://chromium-review.googlesource.com/356452 Commit-Ready: Furquan Shaikh Tested-by: Furquan Shaikh --- src/include/reset.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/reset.h b/src/include/reset.h index 9430ffef56..95ba608254 100644 --- a/src/include/reset.h +++ b/src/include/reset.h @@ -8,5 +8,7 @@ void hard_reset(void); #endif void soft_reset(void); void cpu_reset(void); +/* Some Intel SoCs use a special reset that is specific to SoC */ +void global_reset(void); #endif