]> git.itanic.dy.fi Git - linux-stable/commit
bcmgenet: add WOL IRQ check
authorSergey Shtylyov <s.shtylyov@omp.ru>
Thu, 13 Jan 2022 19:46:07 +0000 (22:46 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jan 2022 11:03:02 +0000 (12:03 +0100)
commit1580365cf1a091dd5382cb350e51a14df56d97ec
tree5c327e040d19a0608e00daaa4fb9cc7cdd1c5155
parent79ec330d03983095ef29c11d07943700fb878d31
bcmgenet: add WOL IRQ check

commit 9deb48b53e7f4056c2eaa2dc2ee3338df619e4f6 upstream.

The driver neglects to check the result of platform_get_irq_optional()'s
call and blithely passes the negative error codes to devm_request_irq()
(which takes *unsigned* IRQ #), causing it to fail with -EINVAL.
Stop calling devm_request_irq() with the invalid IRQ #s.

Fixes: 8562056f267d ("net: bcmgenet: request Wake-on-LAN interrupt")
Signed-off-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/broadcom/genet/bcmgenet.c