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
1 changed files with 4 additions and 0 deletions
|
@ -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? */
|
/* ide_insw calls insw, not __ide_insw. Why? */
|
||||||
#undef insw
|
#undef insw
|
||||||
#undef insl
|
#undef insl
|
||||||
|
#undef outsw
|
||||||
|
#undef outsl
|
||||||
#define insw(port, addr, count) __ide_insw(port, addr, count)
|
#define insw(port, addr, count) __ide_insw(port, addr, count)
|
||||||
#define insl(port, addr, count) __ide_insl(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__ */
|
#endif /* __KERNEL__ */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue