From: Felix Fietkau Date: Thu, 9 Jun 2016 17:18:32 +0000 (+0200) Subject: lantiq: remove dummy ltq_machine_power_off to fix gpio-poweroff drivers X-Git-Tag: v17.01.0-rc1~2446 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=2cf67832ec63b24e23bc1d2bdec6a8a6ddbd0a39;hp=eed2f24c0d1138e9c46befd464548de538f0bb60 lantiq: remove dummy ltq_machine_power_off to fix gpio-poweroff drivers Signed-off-by: Felix Fietkau --- diff --git a/target/linux/lantiq/patches-4.4/0047-poweroff.patch b/target/linux/lantiq/patches-4.4/0047-poweroff.patch new file mode 100644 index 0000000000..54249bba52 --- /dev/null +++ b/target/linux/lantiq/patches-4.4/0047-poweroff.patch @@ -0,0 +1,23 @@ +--- a/arch/mips/lantiq/xway/reset.c ++++ b/arch/mips/lantiq/xway/reset.c +@@ -301,12 +301,6 @@ static void ltq_machine_halt(void) + unreachable(); + } + +-static void ltq_machine_power_off(void) +-{ +- local_irq_disable(); +- unreachable(); +-} +- + static void ltq_usb_init(void) + { + /* Power for USB cores 1 & 2 */ +@@ -379,7 +373,6 @@ static int __init mips_reboot_setup(void + + _machine_restart = ltq_machine_restart; + _machine_halt = ltq_machine_halt; +- pm_power_off = ltq_machine_power_off; + + return 0; + }