gsc.h 359 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright 2022 Gateworks Corporation
  4. */
  5. #ifndef _GSC_H_
  6. #define _GSC_H_
  7. /*
  8. * board_gsc_info - Display additional board info
  9. */
  10. void board_gsc_info(void);
  11. /*
  12. * gsc_boot_wd_disable - disable the BOOT watchdog
  13. *
  14. * Return: 0 on success or negative error on failure
  15. */
  16. int gsc_boot_wd_disable(void);
  17. #endif