1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright (c) 2023 Corigine, Inc. 3 * All rights reserved. 4 */ 5 6 #ifndef __NFP_ELF_H__ 7 #define __NFP_ELF_H__ 8 9 #include <stdint.h> 10 11 int nfp_elf_get_fw_version(uint32_t *fw_version, char *fw_name); 12 13 #endif /* __NFP_ELF_H__ */ 14