Skip to content
Snippets Groups Projects
Commit 006af873 authored by patacongo's avatar patacongo
Browse files

Fix error in prioritization logic

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1210 42af7a65-404d-4744-a932-0658087f49c3
parent e64f0445
No related branches found
No related tags found
No related merge requests found
......@@ -266,12 +266,12 @@ void up_prioritize_irq(int irq, int priority)
goto ipre;
#endif
ipre:
reg = SH1_INTC_IPRD;
reg = SH1_INTC_IPRE;
break;
#endif
default:
dbg("Disabled irq=%d\n", irq);
dbg("Invalid irq=%d\n", irq);
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment