ARM: socfpga: PM: Drop useless check for PM_SUSPEND_STANDBY
authorGeert Uytterhoeven <geert+renesas@glider.be>
Fri, 2 Mar 2018 14:04:47 +0000 (15:04 +0100)
committerArnd Bergmann <arnd@arndb.de>
Wed, 7 Mar 2018 15:08:20 +0000 (16:08 +0100)
As SoCFPGA uses the standard suspend_valid_only_mem() for its
platform_suspend_ops.valid() callback, its platform_suspend_ops.enter()
callback will never be called with state equal to PM_SUSPEND_STANDBY.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Tony Lindgren <tony@atomide.com>
Acked-by: Dinh Nguyen <dinguyen@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/arm/mach-socfpga/pm.c

index c378ab0..d486678 100644 (file)
@@ -116,7 +116,6 @@ static int socfpga_pm_suspend(unsigned long arg)
 static int socfpga_pm_enter(suspend_state_t state)
 {
        switch (state) {
-       case PM_SUSPEND_STANDBY:
        case PM_SUSPEND_MEM:
                outer_disable();
                cpu_suspend(0, socfpga_pm_suspend);