Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at nocache-cleanup 19 lines 480 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * include/linux/irqchip/arm-gic-common.h 4 * 5 * Copyright (C) 2016 ARM Limited, All Rights Reserved. 6 */ 7#ifndef __LINUX_IRQCHIP_ARM_GIC_COMMON_H 8#define __LINUX_IRQCHIP_ARM_GIC_COMMON_H 9 10#include <linux/irqchip/arm-vgic-info.h> 11 12#define GICD_INT_DEF_PRI 0xa0 13 14struct irq_domain; 15struct fwnode_handle; 16int gicv2m_init(struct fwnode_handle *parent_handle, 17 struct irq_domain *parent); 18 19#endif /* __LINUX_IRQCHIP_ARM_GIC_COMMON_H */