Merge tag 'drm-vc4-fixes-2016-06-06' of github.com:anholt/linux into drm-fixes
[linux-2.6-block.git] / arch / powerpc / kernel / swsusp_64.c
CommitLineData
543b9fd3
JB
1/*
2 * PowerPC 64-bit swsusp implementation
3 *
4 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
5 *
6 * GPLv2
7 */
8
543b9fd3
JB
9#include <asm/iommu.h>
10#include <linux/irq.h>
62fe91bb 11#include <linux/sched.h>
543b9fd3
JB
12#include <linux/interrupt.h>
13
14void do_after_copyback(void)
15{
16 iommu_restore();
17 touch_softlockup_watchdog();
18 mb();
19}
20
21void _iommu_save(void)
22{
23 iommu_save();
24}