[dev/lib][warnings] fix -Wmissing-declarations warnings in dev/ and lib/

This commit is contained in:
Travis Geiselbrecht
2021-10-21 23:16:20 -07:00
parent a895bcece5
commit fcb65c9a88
28 changed files with 49 additions and 24 deletions

View File

@@ -405,6 +405,7 @@ enum handler_return __platform_irq(struct iframe *frame) {
return ret;
}
enum handler_return platform_irq(struct iframe *frame);
enum handler_return platform_irq(struct iframe *frame) {
#if WITH_LIB_SM
uint32_t ahppir = GICREG(0, GICC_AHPPIR);
@@ -447,6 +448,7 @@ enum handler_return platform_irq(struct iframe *frame) {
#endif
}
void platform_fiq(struct iframe *frame);
void platform_fiq(struct iframe *frame) {
#if WITH_LIB_SM
sm_handle_fiq();