aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-28 10:45:00 -0700
committerJagan Teki <jagan@amarulasolutions.com>2020-01-24 23:06:49 +0530
commit6321c66cdf73f1d0318b02bfe747acf2f6bbb398 (patch)
treef078f994682c7751490e55289be034d50843231e /arch
parent98c338bcb66bc1f844d4d9523d786eb1db17d036 (diff)
downloadu-boot-6321c66cdf73f1d0318b02bfe747acf2f6bbb398.zip
u-boot-6321c66cdf73f1d0318b02bfe747acf2f6bbb398.tar.gz
u-boot-6321c66cdf73f1d0318b02bfe747acf2f6bbb398.tar.bz2
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')
-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 62cb5b4..0b93cc4 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_ */