Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ce4ed256 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

arm: vt8500: Use proper irq accessors

parent 70c4fa22
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -97,15 +97,15 @@ static int vt8500_irq_set_type(unsigned int irq, unsigned int flow_type)
		return -EINVAL;
	case IRQF_TRIGGER_HIGH:
		dctr |= VT8500_TRIGGER_HIGH;
		irq_desc[orig_irq].handle_irq = handle_level_irq;
		__irq_set_handler_locked(orig_irq, handle_level_irq);
		break;
	case IRQF_TRIGGER_FALLING:
		dctr |= VT8500_TRIGGER_FALLING;
		irq_desc[orig_irq].handle_irq = handle_edge_irq;
		__irq_set_handler_locked(orig_irq, handle_edge_irq);
		break;
	case IRQF_TRIGGER_RISING:
		dctr |= VT8500_TRIGGER_RISING;
		irq_desc[orig_irq].handle_irq = handle_edge_irq;
		__irq_set_handler_locked(orig_irq, handle_edge_irq);
		break;
	}
	writeb(dctr, base + VT8500_IC_DCTR + irq);