lowlevel_init.S 309 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2008, 2010 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  4. */
  5. #include <config.h>
  6. #include <asm/processor.h>
  7. #include <asm/macro.h>
  8. .global lowlevel_init
  9. .text
  10. .align 2
  11. lowlevel_init:
  12. /* Use setting of original bootloader */
  13. rts
  14. nop
  15. .align 2