Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for "gpmc: irq-20 could not claim: err -22" error while booting
  • Loading branch information
filippz committed Aug 11, 2013
1 parent 3bf055a commit 14cbae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-omap2/gpmc.c
Expand Up @@ -769,7 +769,7 @@ static int __init gpmc_init(void)
irq++;
}

ret = request_irq(gpmc_irq, gpmc_handle_irq, IRQF_SHARED, "gpmc", NULL);
ret = request_irq(gpmc_irq, gpmc_handle_irq, 0, "gpmc", NULL);
if (ret)
pr_err("gpmc: irq-%d could not claim: err %d\n",
gpmc_irq, ret);
Expand Down

1 comment on commit 14cbae6

@kjokinie
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This patch is missing your Signed-of-by line, please add it. Also please also change the patch subject to have subsystem prefix, like this

"omap: Fix for "gpmc: irq-20 could not claim: err -22" error while booting"

Also any good kernel commit should have the bug or problem first described, and then a description of what was done to fix that, so that its easy for reviewers to understand both the problem, and the fix, and to check the patch against the description.

Please sign in to comment.