9
0
Fork 0
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@200 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2007-05-03 10:42:13 +00:00
parent fed30968c5
commit ec21fcf033
1 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@ static void lpc214x_decodeirq( uint32 *regs)
unsigned int irq_base;
unsigned int irq = NR_IRQS;
/* Search in groups of four bits. For 22 sources, this is at most five
/* Search in groups of four bits. For 22 sources, this is at most six
* times through the loop.
*/
@ -131,9 +131,9 @@ static void lpc214x_decodeirq( uint32 *regs)
{
if (nibble)
{
irq = irq_base + g_nibblemap[nibble];
irq = irq_base + g_nibblemap[nibble];
break;
}
}
}
/* Verify that the resulting IRQ number is valid */