espt.c 403 B

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