Hello. Manuel Lauss wrote:
Clean out stray unused board_reset() calls in pb1x boards, the pb1000 is different from the rest and gets private methods. Signed-off-by: Manuel Lauss <manuel.lauss@xxxxxxxxx>
[...]
diff --git a/arch/mips/alchemy/devboards/pb1000/board_setup.c b/arch/mips/alchemy/devboards/pb1000/board_setup.c index b5311d8..9fa532c 100644 --- a/arch/mips/alchemy/devboards/pb1000/board_setup.c +++ b/arch/mips/alchemy/devboards/pb1000/board_setup.c
[...]
@@ -177,6 +187,10 @@ void __init board_setup(void) au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL); break; } + + pm_power_off = board_power_off; + _machine_halt = board_power_off; + _machine_restart = board_reset;
Why there are spaces after tabs? WBR, Sergei