sleep.c (b429dbf6e866bd6dadb56fae66f61f611cde57ff) sleep.c (c4845474a01f699966272536e8416222e3f2d2cb)
1/*
2 * sleep.c - x86-specific ACPI sleep support.
3 *
4 * Copyright (C) 2001-2003 Patrick Mochel
5 * Copyright (C) 2001-2003 Pavel Machek <pavel@ucw.cz>
6 */
7
8#include <linux/acpi.h>
9#include <linux/bootmem.h>
10#include <linux/memblock.h>
11#include <linux/dmi.h>
12#include <linux/cpumask.h>
13#include <asm/segment.h>
14#include <asm/desc.h>
15#include <asm/pgtable.h>
16#include <asm/cacheflush.h>
17#include <asm/realmode.h>
18
1/*
2 * sleep.c - x86-specific ACPI sleep support.
3 *
4 * Copyright (C) 2001-2003 Patrick Mochel
5 * Copyright (C) 2001-2003 Pavel Machek <pavel@ucw.cz>
6 */
7
8#include <linux/acpi.h>
9#include <linux/bootmem.h>
10#include <linux/memblock.h>
11#include <linux/dmi.h>
12#include <linux/cpumask.h>
13#include <asm/segment.h>
14#include <asm/desc.h>
15#include <asm/pgtable.h>
16#include <asm/cacheflush.h>
17#include <asm/realmode.h>
18
19#include "../../realmode/rm/wakeup/wakeup.h"
19#include "../../realmode/rm/wakeup.h"
20#include "sleep.h"
21
22unsigned long acpi_realmode_flags;
23
24#if defined(CONFIG_SMP) && defined(CONFIG_64BIT)
25static char temp_stack[4096];
26#endif
27

--- 85 unchanged lines hidden ---
20#include "sleep.h"
21
22unsigned long acpi_realmode_flags;
23
24#if defined(CONFIG_SMP) && defined(CONFIG_64BIT)
25static char temp_stack[4096];
26#endif
27

--- 85 unchanged lines hidden ---