f-stack/dpdk/drivers/net/bnxt/bnxt_util.h

17 lines
343 B
C
Raw Normal View History

2019-06-25 11:12:58 +00:00
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2014-2018 Broadcom
* All rights reserved.
*/
#ifndef _BNXT_UTIL_H_
#define _BNXT_UTIL_H_
2020-06-18 16:55:50 +00:00
#ifndef BIT
#define BIT(n) (1UL << (n))
#endif /* BIT */
2019-06-25 11:12:58 +00:00
int bnxt_check_zero_bytes(const uint8_t *bytes, int len);
2020-06-18 16:55:50 +00:00
void bnxt_eth_hw_addr_random(uint8_t *mac_addr);
2019-06-25 11:12:58 +00:00
#endif /* _BNXT_UTIL_H_ */