board.c 347 B

123456789101112131415
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
  4. * (C) Copyright 2012 Renesas Solutions Corp.
  5. */
  6. #include <common.h>
  7. #include <asm/io.h>
  8. #ifdef CONFIG_ARCH_RMOBILE_BOARD_STRING
  9. int checkboard(void)
  10. {
  11. printf("Board: %s\n", CONFIG_ARCH_RMOBILE_BOARD_STRING);
  12. return 0;
  13. }
  14. #endif