bugs.h 297 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 1995-2003 Russell King
  4. */
  5. #ifndef __ASM_BUGS_H
  6. #define __ASM_BUGS_H
  7. extern void check_writebuffer_bugs(void);
  8. #ifdef CONFIG_MMU
  9. extern void check_other_bugs(void);
  10. #else
  11. #define check_other_bugs() do { } while (0)
  12. #endif
  13. #endif