mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
wilc1000: Rename irq handler from "WILC_IRQ" to netdev name
This change follows normal Linux convention and the new name is more useful since it'll be clear which irq handler statistics correspond to which net device. Signed-off-by: David Mosberger-Tang <davidm@egauge.net> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20211209044411.3482259-3-davidm@egauge.net
This commit is contained in:
parent
4347d34e6a
commit
30e08bc0a9
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ static int init_irq(struct net_device *dev)
|
|||
ret = request_threaded_irq(wl->dev_irq_num, isr_uh_routine,
|
||||
isr_bh_routine,
|
||||
IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
|
||||
"WILC_IRQ", wl);
|
||||
dev->name, wl);
|
||||
if (ret) {
|
||||
netdev_err(dev, "Failed to request IRQ [%d]\n", ret);
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Reference in a new issue