mirror of https://github.com/F-Stack/f-stack.git
17 lines
343 B
C
17 lines
343 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2014-2018 Broadcom
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef _BNXT_UTIL_H_
|
|
#define _BNXT_UTIL_H_
|
|
|
|
#ifndef BIT
|
|
#define BIT(n) (1UL << (n))
|
|
#endif /* BIT */
|
|
|
|
int bnxt_check_zero_bytes(const uint8_t *bytes, int len);
|
|
void bnxt_eth_hw_addr_random(uint8_t *mac_addr);
|
|
|
|
#endif /* _BNXT_UTIL_H_ */
|