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>
This commit is contained in:
Simon Glass 2019-12-28 10:45:00 -07:00 committed by Tom Rini
parent 049f8d6f4a
commit 9101a5ec4a
2 changed files with 2 additions and 1 deletions

View File

@ -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_ */

View File

@ -74,7 +74,6 @@ phys_size_t get_effective_memsize(void);
int testdram(void);
#endif /* CONFIG_SYS_DRAM_TEST */
void reset_misc (void);
void reset_cpu (ulong addr);
/* lib/uuid.c */