lowlevel_init.S 309 B

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