Commit eb6e99f8 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 689a360d
......@@ -38,7 +38,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;
/* ignore error code of call below, we really don't care */
......
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