mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 16:23:59 -04:00
Add firmware interaction to get EEPROM information. Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
375 B
C
12 lines
375 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2015 - 2022 Beijing WangXun Technology Co., Ltd. */
|
|
|
|
#ifndef _TXGBE_HW_H_
|
|
#define _TXGBE_HW_H_
|
|
|
|
int txgbe_read_pba_string(struct txgbe_hw *hw, u8 *pba_num, u32 pba_num_size);
|
|
int txgbe_validate_eeprom_checksum(struct txgbe_hw *hw, u16 *checksum_val);
|
|
int txgbe_reset_hw(struct txgbe_hw *hw);
|
|
|
|
#endif /* _TXGBE_HW_H_ */
|