aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/power/hibernate.c
blob: 19a9af68bcdb10aef723068dc84413cc1677cac4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <asm/tlbflush.h>

extern int restore_image(void);

int swsusp_arch_resume(void)
{
	/* Avoid TLB mismatch during and after kernel resume */
	local_flush_tlb_all();
	return restore_image();
}