diff options
author | Pavel Skripkin <paskripkin@gmail.com> | 2021-06-18 19:14:47 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-19 21:46:00 +0300 |
commit | 0de449d599594f5472e00267d651615c7f2c6c1d (patch) | |
tree | e2d92a2b12829bc7c4967e06f7b50d96e91e6654 /scripts/ld-version.sh | |
parent | 4ae85b23e1f052379f0316e42494e2f84f2a3e6f (diff) | |
download | linux-0de449d599594f5472e00267d651615c7f2c6c1d.tar.xz |
net: ethernet: ezchip: fix error handling
As documented at drivers/base/platform.c for platform_get_irq:
* Gets an IRQ for a platform device and prints an error message if finding the
* IRQ fails. Device drivers should check the return value for errors so as to
* not pass a negative integer value to the request_irq() APIs.
So, the driver should check that platform_get_irq() return value
is _negative_, not that it's equal to zero, because -ENXIO (return
value from request_irq() if irq was not found) will
pass this check and it leads to passing negative irq to request_irq()
Fixes: 0dd077093636 ("NET: Add ezchip ethernet driver")
Signed-off-by: Pavel Skripkin <paskripkin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'scripts/ld-version.sh')
0 files changed, 0 insertions, 0 deletions