io-acorn.S 529 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * linux/arch/arm/lib/io-acorn.S
  4. *
  5. * Copyright (C) 1995, 1996 Russell King
  6. *
  7. * 27/03/03 Ian Molton Clean up CONFIG_CPU
  8. */
  9. #include <linux/linkage.h>
  10. #include <linux/kern_levels.h>
  11. #include <asm/assembler.h>
  12. .text
  13. .align
  14. .Liosl_warning:
  15. .ascii KERN_WARNING "insl/outsl not implemented, called from %08lX\0"
  16. .align
  17. /*
  18. * These make no sense on Acorn machines.
  19. * Print a warning message.
  20. */
  21. ENTRY(insl)
  22. ENTRY(outsl)
  23. adr r0, .Liosl_warning
  24. mov r1, lr
  25. b printk