aboutsummaryrefslogtreecommitdiffstats
path: root/linux-2.6-xen-sparse/include
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-02-15 13:49:04 +0000
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-02-15 13:49:04 +0000
commit07c2f1f3b089a8ea6fd4fe5aec45060a6fc6676b (patch)
treeae1fb5d3d6dd72169bd9ebf32e2bde9dc24561d5 /linux-2.6-xen-sparse/include
parenta190e7e3da8dd17be9e65f9b77c4a5e31f88b688 (diff)
downloadxen-07c2f1f3b089a8ea6fd4fe5aec45060a6fc6676b.tar.gz
xen-07c2f1f3b089a8ea6fd4fe5aec45060a6fc6676b.tar.bz2
xen-07c2f1f3b089a8ea6fd4fe5aec45060a6fc6676b.zip
linux: avoid need to modify include/linux/pfn.h
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'linux-2.6-xen-sparse/include')
-rw-r--r--linux-2.6-xen-sparse/include/linux/pfn.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/linux-2.6-xen-sparse/include/linux/pfn.h b/linux-2.6-xen-sparse/include/linux/pfn.h
deleted file mode 100644
index 87a4ab52b6..0000000000
--- a/linux-2.6-xen-sparse/include/linux/pfn.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#ifndef _LINUX_PFN_H_
-#define _LINUX_PFN_H_
-
-#define PFN_ALIGN(x) (((unsigned long long)(x) + (PAGE_SIZE - 1)) & PAGE_MASK)
-#define PFN_UP(x) (((x) + PAGE_SIZE-1) >> PAGE_SHIFT)
-#define PFN_DOWN(x) ((x) >> PAGE_SHIFT)
-#define PFN_PHYS(x) ((unsigned long long)(x) << PAGE_SHIFT)
-
-#endif