[MIPS] Workaround for a sparse warning in include/asm-mips/mach-tx4927/ioremap.h
include2/asm/mach-tx49xx/ioremap.h:39:52: warning: cast truncates bits from constant value (fff000000 becomes ff000000) Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
e1bb828906
commit
f24ae12b3e
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,8 @@ static inline void __iomem *plat_ioremap(phys_t offset, unsigned long size,
|
||||||
|
|
||||||
static inline int plat_iounmap(const volatile void __iomem *addr)
|
static inline int plat_iounmap(const volatile void __iomem *addr)
|
||||||
{
|
{
|
||||||
return (unsigned long)addr >= (unsigned long)(int)TXX9_DIRECTMAP_BASE;
|
return (unsigned long)addr >=
|
||||||
|
(unsigned long)(int)(TXX9_DIRECTMAP_BASE & 0xffffffff);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* __ASM_MACH_TX49XX_IOREMAP_H */
|
#endif /* __ASM_MACH_TX49XX_IOREMAP_H */
|
||||||
|
|
Loading…
Reference in a new issue