cpu.c 474 B

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