mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-21 09:12:05 +00:00
Initialize ngbe mac/phy type. Check whether the firmware is initialized. Initialize ngbe hw and register netdev. Signed-off-by: Mengyuan Lou <mengyuanlou@net-swift.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
313 B
C
13 lines
313 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* WangXun Gigabit PCI Express Linux driver
|
|
* Copyright (c) 2019 - 2022 Beijing WangXun Technology Co., Ltd.
|
|
*/
|
|
|
|
#ifndef _NGBE_HW_H_
|
|
#define _NGBE_HW_H_
|
|
|
|
int ngbe_eeprom_chksum_hostif(struct ngbe_hw *hw);
|
|
int ngbe_reset_hw(struct ngbe_hw *hw);
|
|
#endif /* _NGBE_HW_H_ */
|