mirror of
https://github.com/torvalds/linux.git
synced 2026-04-27 11:02:31 -04:00
Since the GPIO interrupt controller is always not working properly, we need
to constantly add workaround to cope with hardware deficiencies. So just
remove GPIO interrupt controller, and let the SFP driver poll the GPIO
status.
Fixes: b4a2496c17 ("net: txgbe: fix GPIO interrupt blocking")
Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>
Link: https://patch.msgid.link/20241115071527.1129458-1-jiawenwu@trustnetic.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
12 lines
325 B
C
12 lines
325 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2015 - 2023 Beijing WangXun Technology Co., Ltd. */
|
|
|
|
#ifndef _TXGBE_PHY_H_
|
|
#define _TXGBE_PHY_H_
|
|
|
|
irqreturn_t txgbe_link_irq_handler(int irq, void *data);
|
|
int txgbe_init_phy(struct txgbe *txgbe);
|
|
void txgbe_remove_phy(struct txgbe *txgbe);
|
|
|
|
#endif /* _TXGBE_NODE_H_ */
|