Commit 80b01619 authored by Alessandro Rubini's avatar Alessandro Rubini

fmc-trivial: bugfix: use IRQF_SHARED for non-msi irq

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent b3a10542
......@@ -25,7 +25,7 @@ int t_probe(struct fmc_device *fmc)
if (index < 0)
return -EINVAL; /* not our device: invalid */
ret = fmc->op->irq_request(fmc, t_handler, "fmc-trivial", 0);
ret = fmc->op->irq_request(fmc, t_handler, "fmc-trivial", IRQF_SHARED);
if (ret < 0)
return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment