mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
b0b92ab6a8
There are registers and functions in the header file that are only used inside the driver. Move these into the driver. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20200607215124.48638-2-linus.walleij@linaro.org
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
|