ms7750se.c 332 B

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