mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 23:30:53 +07:00
[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
@ -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)
|
||||
{
|
||||
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 */
|
||||
|
Loading…
Reference in New Issue
Block a user