Commit aa8d5f88 authored by Etienne Carriere's avatar Etienne Carriere
Browse files

PSCI: use same function prototype as in header file

Signed-off-by: default avatarYann Gautier <yann.gautier@st.com>
Signed-off-by: default avatarEtienne Carriere <etienne.carriere@st.com>
Showing with 2 additions and 2 deletions
+2 -2
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#include <platform.h> #include <platform.h>
#include "psci_private.h" #include "psci_private.h"
void psci_system_off(void) void __dead2 psci_system_off(void)
{ {
psci_print_power_domain_map(); psci_print_power_domain_map();
...@@ -31,7 +31,7 @@ void psci_system_off(void) ...@@ -31,7 +31,7 @@ void psci_system_off(void)
/* This function does not return. We should never get here */ /* This function does not return. We should never get here */
} }
void psci_system_reset(void) void __dead2 psci_system_reset(void)
{ {
psci_print_power_domain_map(); psci_print_power_domain_map();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment