mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
sh64: Kill off unused fixed I/O mapping window.
This was reworked some time ago to go through fixmaps instead, leaving the range itself unused. As such, kill off the remaining references and hand over the remaining space for fixmaps directly. This also makes it possible to simplify the vmalloc fault case as we no longer have to care about the special section. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
20e7c297ef
commit
e45af0e083
3 changed files with 2 additions and 6 deletions
|
@ -96,7 +96,7 @@ extern void __clear_fixmap(enum fixed_addresses idx, pgprot_t flags);
|
|||
#ifdef CONFIG_SUPERH32
|
||||
#define FIXADDR_TOP (P3_ADDR_MAX - PAGE_SIZE)
|
||||
#else
|
||||
#define FIXADDR_TOP (0xff000000 - PAGE_SIZE)
|
||||
#define FIXADDR_TOP ((unsigned long)(-PAGE_SIZE))
|
||||
#endif
|
||||
#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
|
||||
#define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue