1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-25 00:50:50 +02:00

[adm5120] revert [9788], the ADM5120 datasheet v1.16 contains bad values

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9790 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2007-12-17 16:39:53 +00:00
parent 140ea29a53
commit ab35af6017

View File

@ -75,8 +75,6 @@ static void adm5120_intc_irq_mask(unsigned int irq)
static int adm5120_intc_irq_set_type(unsigned int irq, unsigned int flow_type)
{
/* TODO: not yet tested */
unsigned int sense;
unsigned long mode;
int err = 0;
@ -109,9 +107,9 @@ static int adm5120_intc_irq_set_type(unsigned int irq, unsigned int flow_type)
case ADM5120_IRQ_GPIO4:
mode = INTC_READ(INTC_REG_INT_MODE);
if (sense == IRQ_TYPE_LEVEL_LOW)
mode |= (1 << (3 + irq - ADM5120_IRQ_GPIO2));
mode |= (1 << (irq - ADM5120_INTC_IRQ_BASE));
else
mode &= (1 << (3 + irq - ADM5120_IRQ_GPIO2));
mode &= ~(1 << (irq - ADM5120_INTC_IRQ_BASE));
INTC_WRITE(INTC_REG_INT_MODE, mode);
/* fallthrough */