13 lines
341 B
C
13 lines
341 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
/*
|
||
|
|
* Copyright (C) 2024 ARM Limited, All Rights Reserved.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef _IRQ_GIC_ITS_MSI_PARENT_H
|
||
|
|
#define _IRQ_GIC_ITS_MSI_PARENT_H
|
||
|
|
|
||
|
|
extern const struct msi_parent_ops gic_v3_its_msi_parent_ops;
|
||
|
|
extern const struct msi_parent_ops gic_v5_its_msi_parent_ops;
|
||
|
|
|
||
|
|
#endif /* _IRQ_GIC_ITS_MSI_PARENT_H */
|