forked from mirrors/linux
		
	Rationale: Reduces attack surface on kernel devs opening the links for MITM as HTTPS traffic is much harder to manipulate. Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Reviewed-by: Kees Cook <keescook@chromium.org> Link: http://lkml.kernel.org/r/20200726110117.16346-1-grandmaster@al2klimov.de Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			567 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 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 */
 |