]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/mips/power/hibernate.c
Merge remote-tracking branches 'spi/topic/pxa', 'spi/topic/rb4xx', 'spi/topic/rspi...
[mirror_ubuntu-bionic-kernel.git] / arch / mips / power / hibernate.c
CommitLineData
f8fd30eb
HC
1#include <asm/tlbflush.h>
2
3extern int restore_image(void);
4
5int swsusp_arch_resume(void)
6{
7 /* Avoid TLB mismatch during and after kernel resume */
8 local_flush_tlb_all();
9 return restore_image();
10}