Files
linux-apfs/include/linux/irqchip.h
T

21 lines
459 B
C
Raw Normal View History

2012-11-20 23:00:52 +01:00
/*
* Copyright (C) 2012 Thomas Petazzoni
*
* Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
*
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed "as is" without any
* warranty of any kind, whether express or implied.
*/
#ifndef _LINUX_IRQCHIP_H
#define _LINUX_IRQCHIP_H
2013-05-08 15:20:04 +02:00
#ifdef CONFIG_IRQCHIP
2012-11-20 23:00:52 +01:00
void irqchip_init(void);
2013-05-08 15:20:04 +02:00
#else
static inline void irqchip_init(void) {}
#endif
2012-11-20 23:00:52 +01:00
#endif