forked from luck/tmp_suning_uos_patched
sh: Conserve fixmap slots when IOREMAP_FIXED=n.
Presently the IOREMAP_FIXED fixmaps are always defined, even if the platform isn't capable of supporting it. Since we already have an ifdef for it, ifdef the entries, too. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
2dc2f8e0c4
commit
a077e91690
@ -61,6 +61,7 @@ enum fixed_addresses {
|
|||||||
FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
|
FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_IOREMAP_FIXED
|
||||||
/*
|
/*
|
||||||
* FIX_IOREMAP entries are useful for mapping physical address
|
* FIX_IOREMAP entries are useful for mapping physical address
|
||||||
* space before ioremap() is useable, e.g. really early in boot
|
* space before ioremap() is useable, e.g. really early in boot
|
||||||
@ -69,6 +70,7 @@ enum fixed_addresses {
|
|||||||
#define FIX_N_IOREMAPS 32
|
#define FIX_N_IOREMAPS 32
|
||||||
FIX_IOREMAP_BEGIN,
|
FIX_IOREMAP_BEGIN,
|
||||||
FIX_IOREMAP_END = FIX_IOREMAP_BEGIN + FIX_N_IOREMAPS,
|
FIX_IOREMAP_END = FIX_IOREMAP_BEGIN + FIX_N_IOREMAPS,
|
||||||
|
#endif
|
||||||
|
|
||||||
__end_of_fixed_addresses
|
__end_of_fixed_addresses
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user