]> Git Repo - J-linux.git/blob - arch/mips/power/hibernate.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / arch / mips / power / hibernate.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/suspend.h>
3 #include <asm/tlbflush.h>
4
5 extern int restore_image(void);
6
7 int swsusp_arch_resume(void)
8 {
9         /* Avoid TLB mismatch during and after kernel resume */
10         local_flush_tlb_all();
11         return restore_image();
12 }
This page took 0.028103 seconds and 4 git commands to generate.