summaryrefslogtreecommitdiff
path: root/include/asm-sh/pgalloc-2level.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@athlon.transmeta.com>2002-02-04 18:11:38 -0800
committerLinus Torvalds <torvalds@athlon.transmeta.com>2002-02-04 18:11:38 -0800
commit1a0153507ffae9cf3350e76c12d441788c0191e1 (patch)
treed05a502b4fc05202c84c1667019460c08ea088cd /include/asm-sh/pgalloc-2level.h
parentb0683ac8928c4cf40646a6ce3eb6ffe94605acfa (diff)
v2.4.3.2 -> v2.4.3.3
- Hui-Fen Hsu: sis900 driver update - NIIBE Yutaka: Super-H update - Alan Cox: more resyncs (ARM down, but more to go) - David Miller: network zerocopy, Sparc sync, qlogic,FC fix, etc. - David Miller/me: get rid of various drivers hacks to do mmap alignment behind the back of the VM layer. Create a real protocol for it.
Diffstat (limited to 'include/asm-sh/pgalloc-2level.h')
-rw-r--r--include/asm-sh/pgalloc-2level.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/asm-sh/pgalloc-2level.h b/include/asm-sh/pgalloc-2level.h
deleted file mode 100644
index a9c9fddc473e..000000000000
--- a/include/asm-sh/pgalloc-2level.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef __ASM_SH_PGALLOC_2LEVEL_H
-#define __ASM_SH_PGALLOC_2LEVEL_H
-
-/*
- * traditional two-level paging, page table allocation routines:
- */
-
-static __inline__ pmd_t *get_pmd_fast(void)
-{
- return (pmd_t *)0;
-}
-
-static __inline__ void free_pmd_fast(pmd_t *pmd) { }
-static __inline__ void free_pmd_slow(pmd_t *pmd) { }
-
-static __inline__ pmd_t * pmd_alloc(pgd_t *pgd, unsigned long address)
-{
- if (!pgd)
- BUG();
- return (pmd_t *) pgd;
-}
-
-#endif /* __ASM_SH_PGALLOC_2LEVEL_H */