.. | .. |
---|
1 | | -/* |
---|
2 | | - * fixmap.h: compile-time virtual memory allocation |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0 |
---|
3 | 2 | * |
---|
4 | | - * This file is subject to the terms and conditions of the GNU General Public |
---|
5 | | - * License. See the file "COPYING" in the main directory of this archive |
---|
6 | | - * for more details. |
---|
| 3 | + * fixmap.h: compile-time virtual memory allocation |
---|
7 | 4 | * |
---|
8 | 5 | * Copyright (C) 1998 Ingo Molnar |
---|
9 | 6 | * |
---|
.. | .. |
---|
86 | 83 | * the start of the fixmap, and leave one page empty |
---|
87 | 84 | * at the top of mem.. |
---|
88 | 85 | */ |
---|
89 | | -#ifdef CONFIG_SUPERH32 |
---|
90 | 86 | #define FIXADDR_TOP (P4SEG - PAGE_SIZE) |
---|
91 | | -#else |
---|
92 | | -#define FIXADDR_TOP ((unsigned long)(-PAGE_SIZE)) |
---|
93 | | -#endif |
---|
94 | 87 | #define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT) |
---|
95 | 88 | #define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE) |
---|
96 | 89 | |
---|