summaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-28 10:45:00 -0700
committerTom Rini <trini@konsulko.com>2020-01-17 13:27:30 -0500
commit9101a5ec4a6cbcb50e037fb7287ad4e73b2d625d (patch)
treeb90d31b44b71ef471e448744472da99cd694a01d /arch/arm
parent049f8d6f4acc0eff71c9db5c3ca6276b56ce3357 (diff)
common: Move reset_misc() function to arch header
This function is only used on ARM devices. Move it out of the common file and to a arch-specific header. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/include/asm/u-boot-arm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/u-boot-arm.h b/arch/arm/include/asm/u-boot-arm.h
index 62cb5b4a98..0b93cc48c5 100644
--- a/arch/arm/include/asm/u-boot-arm.h
+++ b/arch/arm/include/asm/u-boot-arm.h
@@ -54,6 +54,8 @@ void do_fiq(struct pt_regs *pt_regs);
void do_irq(struct pt_regs *pt_regswq);
#endif
+void reset_misc(void);
+
#endif /* __ASSEMBLY__ */
#endif /* _U_BOOT_ARM_H_ */