mirror of https://gitee.com/openkylin/linux.git
Redefine outs[wl] for ide_outs[wl].
Add missing bits to fix D-cache aliasing problem in the PIO IDE driver. 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
4fa0997be8
commit
a06d61c648
|
@ -168,8 +168,12 @@ static inline void __ide_mm_outsl(void __iomem * port, void *addr, u32 count)
|
|||
/* ide_insw calls insw, not __ide_insw. Why? */
|
||||
#undef insw
|
||||
#undef insl
|
||||
#undef outsw
|
||||
#undef outsl
|
||||
#define insw(port, addr, count) __ide_insw(port, addr, count)
|
||||
#define insl(port, addr, count) __ide_insl(port, addr, count)
|
||||
#define outsw(port, addr, count) __ide_outsw(port, addr, count)
|
||||
#define outsl(port, addr, count) __ide_outsl(port, addr, count)
|
||||
|
||||
#endif /* __KERNEL__ */
|
||||
|
||||
|
|
Loading…
Reference in New Issue