aboutsummaryrefslogtreecommitdiff
path: root/core/fast-reboot.c
diff options
context:
space:
mode:
authorCédric Le Goater <clg@fr.ibm.com>2015-02-24 12:14:18 +0100
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-02-26 18:19:40 +1100
commit71412289a28b23dc459dae472a0264ca660cd7df (patch)
tree51a7ca62ac19c738040c895fd7631e048dce7642 /core/fast-reboot.c
parent61f1609249bca3234fd3f463ebc55c6eeef8f494 (diff)
downloadskiboot-71412289a28b23dc459dae472a0264ca660cd7df.zip
skiboot-71412289a28b23dc459dae472a0264ca660cd7df.tar.gz
skiboot-71412289a28b23dc459dae472a0264ca660cd7df.tar.bz2
sparse: fix fonction declarations
Signed-off-by: Cédric Le Goater <clg@fr.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'core/fast-reboot.c')
-rw-r--r--core/fast-reboot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fast-reboot.c b/core/fast-reboot.c
index a32bed3..30b77e9 100644
--- a/core/fast-reboot.c
+++ b/core/fast-reboot.c
@@ -247,9 +247,9 @@ static void memory_reset(void)
#endif /* FAST_REBOOT_CLEARS_MEMORY */
/* Entry from asm after a fast reset */
-void fast_reboot(void);
+void __noreturn fast_reboot(void);
-void fast_reboot(void)
+void __noreturn fast_reboot(void)
{
static volatile bool fast_boot_release;
struct cpu_thread *cpu;