repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
15 lines
353 B
C
15 lines
353 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* arch/arm/include/asm/hardware/vic.h
|
|
*
|
|
* Copyright (c) ARM Limited 2003. All rights reserved.
|
|
*/
|
|
#ifndef __ASM_ARM_HARDWARE_VIC_H
|
|
#define __ASM_ARM_HARDWARE_VIC_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
void vic_init(void __iomem *base, unsigned int irq_start, u32 vic_sources, u32 resume_sources);
|
|
|
|
#endif
|