mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 07:43:57 -04:00
In the current interrupt controller, the MAC interrupt acts as the parent interrupt in the GPIO IRQ chip. But when the number of Rx/Tx ring changes, the PCI IRQ vector needs to be reallocated. Then this interrupt controller would be corrupted. So use irq_domain structure to avoid the above problem. Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
8 lines
292 B
C
8 lines
292 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2015 - 2024 Beijing WangXun Technology Co., Ltd. */
|
|
|
|
void txgbe_irq_enable(struct wx *wx, bool queues);
|
|
int txgbe_request_irq(struct wx *wx);
|
|
void txgbe_free_misc_irq(struct txgbe *txgbe);
|
|
int txgbe_setup_misc_irq(struct txgbe *txgbe);
|