Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-only
0002 /*
0003  * PowerPC 64-bit swsusp implementation
0004  *
0005  * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
0006  */
0007 
0008 #include <asm/iommu.h>
0009 #include <linux/irq.h>
0010 #include <linux/sched.h>
0011 #include <linux/interrupt.h>
0012 #include <linux/nmi.h>
0013 
0014 void do_after_copyback(void)
0015 {
0016     iommu_restore();
0017     touch_softlockup_watchdog();
0018     mb();
0019 }