21 lines
386 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2012, NVIDIA Corporation. All rights reserved.
*/
#ifndef __SOC_TEGRA_IRQ_H
#define __SOC_TEGRA_IRQ_H
2026-01-29 22:25:33 +08:00
#include <linux/types.h>
#if defined(CONFIG_ARM) && defined(CONFIG_ARCH_TEGRA)
2026-01-21 18:59:54 +08:00
bool tegra_pending_sgi(void);
2026-01-29 22:25:33 +08:00
#else
static inline bool tegra_pending_sgi(void)
{
return false;
}
2026-01-21 18:59:54 +08:00
#endif
#endif /* __SOC_TEGRA_IRQ_H */