1 /* 2 * Copyright (c) Meta Platforms, Inc. and affiliates. 3 * 4 * SPDX-License-Identifier: GPL-2.0-only 5 */ 6 7 #ifndef ASPEED_EEPROM_H 8 #define ASPEED_EEPROM_H 9 10 #include "qemu/osdep.h" 11 12 extern const uint8_t fby35_nic_fruid[]; 13 extern const uint8_t fby35_bb_fruid[]; 14 extern const uint8_t fby35_bmc_fruid[]; 15 extern const size_t fby35_nic_fruid_len; 16 extern const size_t fby35_bb_fruid_len; 17 extern const size_t fby35_bmc_fruid_len; 18 19 #endif 20