aboutsummaryrefslogtreecommitdiff
path: root/lib/mpi/mpi-inline.h
diff options
context:
space:
mode:
authorAndy Shevchenko <[email protected]>2021-03-31 17:45:26 +0300
committerGreg Kroah-Hartman <[email protected]>2021-04-02 17:06:34 +0200
commited7027fdf4ec41ed6df6814956dc11860232a9d5 (patch)
treead4562e843fd5e2738d7b812ddd4a6ab173a6533 /lib/mpi/mpi-inline.h
parent318c3e00f13c2f6e11202a22cc302ea8c70552ea (diff)
driver core: platform: Make platform_get_irq_optional() optional
Currently the platform_get_irq_optional() returns an error code even if IRQ resource sumply has not been found. It prevents caller to be error code agnostic in their error handling. Now: ret = platform_get_irq_optional(...); if (ret != -ENXIO) return ret; // respect deferred probe if (ret > 0) ...we get an IRQ... After proposed change: ret = platform_get_irq_optional(...); if (ret < 0) return ret; if (ret > 0) ...we get an IRQ... Reported-by: Matthias Schiffer <[email protected]> Signed-off-by: Andy Shevchenko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'lib/mpi/mpi-inline.h')
0 files changed, 0 insertions, 0 deletions