mirror of https://github.com/torvalds/linux.git
platform_get_irq() returns negative error number instead 0 on failure.
And the doc of platform_get_irq() provides a usage example:
int irq = platform_get_irq(pdev, 0);
if (irq < 0)
return irq;
Fix the check of return value to catch errors correctly.
Fixes:
|
||
|---|---|---|
| .. | ||
| Kconfig | ||
| Makefile | ||
| arm-versatile-reboot.c | ||
| as3722-poweroff.c | ||
| at91-poweroff.c | ||
| at91-reset.c | ||
| at91-sama5d2_shdwc.c | ||
| atc260x-poweroff.c | ||
| axxia-reset.c | ||
| brcm-kona-reset.c | ||
| brcmstb-reboot.c | ||
| gemini-poweroff.c | ||
| gpio-poweroff.c | ||
| gpio-restart.c | ||
| hisi-reboot.c | ||
| keystone-reset.c | ||
| linkstation-poweroff.c | ||
| ltc2952-poweroff.c | ||
| msm-poweroff.c | ||
| mt6323-poweroff.c | ||
| nvmem-reboot-mode.c | ||
| ocelot-reset.c | ||
| oxnas-restart.c | ||
| piix4-poweroff.c | ||
| qcom-pon.c | ||
| qnap-poweroff.c | ||
| reboot-mode.c | ||
| regulator-poweroff.c | ||
| restart-poweroff.c | ||
| rmobile-reset.c | ||
| sc27xx-poweroff.c | ||
| st-poweroff.c | ||
| syscon-poweroff.c | ||
| syscon-reboot-mode.c | ||
| syscon-reboot.c | ||
| tps65086-restart.c | ||
| vexpress-poweroff.c | ||
| xgene-reboot.c | ||