mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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:
parent
97c316c68c
commit
6138946f50
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue