cpu.c 477 B

12345678910111213141516171819202122
  1. /*
  2. * (C) Copyright 2002
  3. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  4. * Marius Groeger <mgroeger@sysgo.de>
  5. *
  6. * (C) Copyright 2002
  7. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  8. * Alex Zuepke <azu@sysgo.de>
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. */
  12. /*
  13. * cleanup_before_linux() - Prepare the CPU to jump to Linux
  14. *
  15. * This function is called just before we call Linux, it
  16. * prepares the processor for linux
  17. */
  18. int cleanup_before_linux(void)
  19. {
  20. return 0;
  21. }