Skip to content

Commit

Permalink
ANDROID: Fix kernelci build break due to typo
Browse files Browse the repository at this point in the history
Fix a typo that results in build error:

drivers/irqchip/irq-gic.c:1266:2: error: implicit declaration of function 'gic_v2_syscore_init'

Fixes: 61b67cd ("ANDROID: irqchip: irq-gic: Add vendor hook for gic-v2 resume")
Signed-off-by: Todd Kjos <tkjos@google.com>
Change-Id: I48c677c2f167dbdb49db6debbc41966cfcb79b3e
  • Loading branch information
toddkjos committed Jun 28, 2022
1 parent d3b1101 commit 43074ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/irqchip/irq-gic.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ static void gic_v2_syscore_init(void)
}

#else
static inline void gic_syscore_init(void) { }
static inline void gic_v2_syscore_init(void) { }
void gic_v2_resume(void) { }
#endif

Expand Down

0 comments on commit 43074ec

Please sign in to comment.