~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to arch/powerpc/kernel/swsusp_64.c

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * PowerPC 64-bit swsusp implementation
 
3
 *
 
4
 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
 
5
 *
 
6
 * GPLv2
 
7
 */
 
8
 
 
9
#include <asm/system.h>
 
10
#include <asm/iommu.h>
 
11
#include <linux/irq.h>
 
12
#include <linux/sched.h>
 
13
#include <linux/interrupt.h>
 
14
 
 
15
void do_after_copyback(void)
 
16
{
 
17
        iommu_restore();
 
18
        touch_softlockup_watchdog();
 
19
        mb();
 
20
}
 
21
 
 
22
void _iommu_save(void)
 
23
{
 
24
        iommu_save();
 
25
}