ms7750se.c 335 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (C) 2007
  3. * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <asm/processor.h>
  9. int checkboard(void)
  10. {
  11. puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
  12. return 0;
  13. }
  14. int board_init(void)
  15. {
  16. return 0;
  17. }
  18. int board_late_init(void)
  19. {
  20. return 0;
  21. }