cpu.h 297 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * cpu.h
  4. *
  5. * Copyright (c) 2009 Freescale Semiconductor, Inc.
  6. */
  7. #ifndef _CPU_H_
  8. #define _CPU_H_
  9. #include <command.h>
  10. /* Use this to create board specific reset functions */
  11. void board_reset(void) __attribute__((__weak__));
  12. #endif /* _CPU_H_ */