pub trait ChipWithIrqChip: Chip {
    fn handle_irq_flow(
        _data: <Self::Data as PointerWrapper>::Borrowed<'_>,
        _desc: &Descriptor,
        _domain: &Domain
    ); }
Expand description

A gpio chip that includes an irq chip.

Required Methods

Implements the irq flow for the gpio chip.

Implementors