]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/powerpc/kernel/swsusp_64.c
Merge tag 'efi-urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi into...
[mirror_ubuntu-artful-kernel.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 12#include <linux/interrupt.h>
38b8d208 13#include <linux/nmi.h>
543b9fd3
JB
14
15void do_after_copyback(void)
16{
17 iommu_restore();
18 touch_softlockup_watchdog();
19 mb();
20}
21
22void _iommu_save(void)
23{
24 iommu_save();
25}