mmiowb.h 433 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_IA64_MMIOWB_H
  3. #define _ASM_IA64_MMIOWB_H
  4. /**
  5. * mmiowb - I/O write barrier
  6. *
  7. * Ensure ordering of I/O space writes. This will make sure that writes
  8. * following the barrier will arrive after all previous writes. For most
  9. * ia64 platforms, this is a simple 'mf.a' instruction.
  10. */
  11. #define mmiowb() ia64_mfa()
  12. #include <asm-generic/mmiowb.h>
  13. #endif /* _ASM_IA64_MMIOWB_H */