coreboot.c 208 B

12345678910111213141516
  1. /*
  2. * Copyright (C) 2013 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <cros_ec.h>
  8. int arch_early_init_r(void)
  9. {
  10. if (cros_ec_board_init())
  11. return -1;
  12. return 0;
  13. }