diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-01-27 01:05:20 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-01-27 01:05:20 +0000 |
commit | 546db14ee74118296f425f3b91634fb767d67290 (patch) | |
tree | 22b613a3da8d4bf663eec5e155af01b87fdf9094 /include/asm-mips64/highmem.h | |
parent | 1e25e41c4f5474e14452094492dbc169b800e4c8 (diff) |
Merge with Linux 2.3.23. The new bootmem stuff has broken various
platforms. At this time I've only verified that IP22 support compiles
and IP27 actually works.
Diffstat (limited to 'include/asm-mips64/highmem.h')
-rw-r--r-- | include/asm-mips64/highmem.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/asm-mips64/highmem.h b/include/asm-mips64/highmem.h new file mode 100644 index 000000000..fe6b44516 --- /dev/null +++ b/include/asm-mips64/highmem.h @@ -0,0 +1,27 @@ +/* $Id$ + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive + * for more details. + * + * Copyright (C) 2000 by Ralf Baechle + * Copyright (C) 2000 Silicon Graphics, Inc. + */ +#ifndef _ASM_HIGHMEM_H +#define _ASM_HIGHMEM_H + +#include <linux/init.h> +#include <asm/pgtable.h> + +/* declarations for highmem.c */ +extern unsigned long highstart_pfn, highend_pfn; + +extern pte_t *kmap_pte; +extern pgprot_t kmap_prot; + +#define kmap_init() do { } while(0) +#define kmap(page, type) page_address(page) +#define kunmap(vaddr, type) do { } while(0) +#define kmap_check() do { } while(0) + +#endif /* _ASM_HIGHMEM_H */ |