espt.c 406 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2009 Renesas Solutions Corp.
  3. * Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
  4. *
  5. * board/espt/espt.c
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #include <common.h>
  10. #include <asm/io.h>
  11. #include <asm/processor.h>
  12. int checkboard(void)
  13. {
  14. puts("BOARD: ESPT-GIGA\n");
  15. return 0;
  16. }
  17. int board_init(void)
  18. {
  19. return 0;
  20. }
  21. void led_set_state(unsigned short value)
  22. {
  23. }