bugs.h 441 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * S390 version
  4. * Copyright IBM Corp. 1999
  5. * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
  6. *
  7. * Derived from "include/asm-i386/bugs.h"
  8. * Copyright (C) 1994 Linus Torvalds
  9. */
  10. /*
  11. * This is included by init/main.c to check for architecture-dependent bugs.
  12. *
  13. * Needs:
  14. * void check_bugs(void);
  15. */
  16. static inline void check_bugs(void)
  17. {
  18. /* s390 has no bugs ... */
  19. }