]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/mips/power/hibernate.c
UBUNTU: Ubuntu-4.15.0-96.97
[mirror_ubuntu-bionic-kernel.git] / arch / mips / power / hibernate.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
f8fd30eb
HC
2#include <asm/tlbflush.h>
3
4extern int restore_image(void);
5
6int swsusp_arch_resume(void)
7{
8 /* Avoid TLB mismatch during and after kernel resume */
9 local_flush_tlb_all();
10 return restore_image();
11}