Commit a9c5d23a authored by Matt Hsu's avatar Matt Hsu Committed by Ben Dooks

[ARM] S3C64XX: Correct the EINT IRQ type configuration

Select the correct EINT configuration register when configuring
the external interrupt level/edge type.
Signed-off-by: default avatarMatt Hsu <matt_hsu@openmoko.org>
[ben-linux@fluff.org: description improvement]
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent 11e3bd09
...@@ -82,7 +82,7 @@ static int s3c_irq_eint_set_type(unsigned int irq, unsigned int type) ...@@ -82,7 +82,7 @@ static int s3c_irq_eint_set_type(unsigned int irq, unsigned int type)
if (offs > 27) if (offs > 27)
return -EINVAL; return -EINVAL;
if (offs > 15) if (offs <= 15)
reg = S3C64XX_EINT0CON0; reg = S3C64XX_EINT0CON0;
else else
reg = S3C64XX_EINT0CON1; reg = S3C64XX_EINT0CON1;
......
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