GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / powerpc / kernel / suspend.c
blob0167d53da30cbbbb1e61c8cdb8768db35e4b3e7a
1 /*
2 * Suspend support specific for power.
4 * Distribute under GPLv2
6 * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
7 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
8 */
10 #include <linux/mm.h>
11 #include <asm/page.h>
13 /* References to section boundaries */
14 extern const void __nosave_begin, __nosave_end;
17 * pfn_is_nosave - check if given pfn is in the 'nosave' section
20 int pfn_is_nosave(unsigned long pfn)
22 unsigned long nosave_begin_pfn = __pa(&__nosave_begin) >> PAGE_SHIFT;
23 unsigned long nosave_end_pfn = PAGE_ALIGN(__pa(&__nosave_end)) >> PAGE_SHIFT;
24 return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);