cpu.h 297 B

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