ibf-dsp561.c 302 B

123456789101112131415161718
  1. /*
  2. * U-boot - main board file
  3. *
  4. * Copyright (c) 2008-2009 I-SYST.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <common.h>
  9. DECLARE_GLOBAL_DATA_PTR;
  10. int checkboard(void)
  11. {
  12. printf("Board: I-SYST IBF-DSP561 Micromodule\n");
  13. printf(" Support: http://www.i-syst.com/\n");
  14. return 0;
  15. }