perf tools: Streamline bpf examples and headers installation
[linux/fpc-iii.git] / arch / mips / power / hibernate.c
blob94ab17c3c49d2caf4923ab9267709b425070ac9e
1 // SPDX-License-Identifier: GPL-2.0
2 #include <asm/tlbflush.h>
4 extern int restore_image(void);
6 int swsusp_arch_resume(void)
8 /* Avoid TLB mismatch during and after kernel resume */
9 local_flush_tlb_all();
10 return restore_image();