commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
21 lines
567 B
C
21 lines
567 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/**
|
|
* irq-omap-intc.h - INTC Idle Functions
|
|
*
|
|
* Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com
|
|
*
|
|
* Author: Felipe Balbi <balbi@ti.com>
|
|
*/
|
|
|
|
#ifndef __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H
|
|
#define __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H
|
|
|
|
int omap_irq_pending(void);
|
|
void omap_intc_save_context(void);
|
|
void omap_intc_restore_context(void);
|
|
void omap3_intc_suspend(void);
|
|
void omap3_intc_prepare_idle(void);
|
|
void omap3_intc_resume_idle(void);
|
|
|
|
#endif /* __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H */
|