Make the GIC SGI global variables static, they are only ever used within

within this file.

Approved by:	ABT Systems Ltd
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Andrew Turner 2016-04-21 14:04:56 +00:00
parent 97c316c68c
commit 6138946f50

View File

@ -131,8 +131,8 @@ static int arm_gic_intr(void *);
static int arm_gic_bind_intr(device_t dev, struct intr_irqsrc *isrc);
#ifdef SMP
u_int sgi_to_ipi[GIC_LAST_SGI - GIC_FIRST_SGI + 1];
u_int sgi_first_unused = GIC_FIRST_SGI;
static u_int sgi_to_ipi[GIC_LAST_SGI - GIC_FIRST_SGI + 1];
static u_int sgi_first_unused = GIC_FIRST_SGI;
#endif
#endif