summaryrefslogtreecommitdiff
path: root/drivers/firmware
diff options
context:
space:
mode:
authorchenjh <chenjh@rock-chips.com>2017-03-17 17:10:43 +0800
committerchenjh <chenjh@rock-chips.com>2017-04-05 19:02:27 +0800
commitfdfa7d9d572f05a6ec6c1696662c7301ec63129d (patch)
treee5d954147504c3cd557553a03b1e26c992f5991d /drivers/firmware
parent2190d7a3f4afb341a5ca15fffd242c17194bbbe9 (diff)
firmware: psci: remove fiq enable after cpu_suspend
Change-Id: I2fb6cd70ed462eb5abc36be790008daa134810d6 Signed-off-by: chenjh <chenjh@rock-chips.com>
Diffstat (limited to 'drivers/firmware')
-rw-r--r--drivers/firmware/psci.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/firmware/psci.c b/drivers/firmware/psci.c
index 6da0c018afd9..28395eb9e05e 100644
--- a/drivers/firmware/psci.c
+++ b/drivers/firmware/psci.c
@@ -34,10 +34,6 @@
#include <asm/smp_plat.h>
#include <asm/suspend.h>
-#ifdef CONFIG_FIQ_DEBUGGER_EL3_TO_EL1
-#include <linux/rockchip/rockchip_sip.h>
-#endif
-
/*
* While a 64-bit OS can make calls with SMC32 calling conventions, for some
* calls it is necessary to use SMC64 to pass or return 64-bit values.
@@ -355,9 +351,6 @@ int psci_cpu_suspend_enter(unsigned long index)
else
ret = cpu_suspend(index, psci_suspend_finisher);
-#ifdef CONFIG_FIQ_DEBUGGER_EL3_TO_EL1
- psci_enable_fiq();
-#endif
return ret;
}