The query results are valid until the next PM_SUSPEND_PREPARE. Bug: 116363986 Change-Id: I6bc2bd47c830262319576a001d39ac9a994916cf Signed-off-by: Iliyan Malchev <malchev@google.com> Signed-off-by: Miguel de Dios <migueldedios@google.com>
16 lines
362 B
C
16 lines
362 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_IRQHANDLER_H
|
|
#define _LINUX_IRQHANDLER_H
|
|
|
|
/*
|
|
* Interrupt flow handler typedefs are defined here to avoid circular
|
|
* include dependencies.
|
|
*/
|
|
|
|
struct irq_desc;
|
|
struct irq_data;
|
|
typedef bool (*irq_flow_handler_t)(struct irq_desc *desc);
|
|
typedef void (*irq_preflow_handler_t)(struct irq_data *data);
|
|
|
|
#endif
|