From 1e3cd03815239ce5ca54ca7eda0288e575684298 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 27 Jun 2007 20:01:10 +0000 Subject: [PATCH] Add a few functions. Signed-off-by: Ronald G. Minnich Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@378 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- include/arch/x86/cpu.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/arch/x86/cpu.h b/include/arch/x86/cpu.h index 3d90bc2234..db4423744e 100644 --- a/include/arch/x86/cpu.h +++ b/include/arch/x86/cpu.h @@ -188,4 +188,11 @@ static inline void disable_cache(void) wbinvd(); } +/* random other functions. These are not architecture-specific, except they really + * are in many ways. Seperate the PC from the "X86" is hard. + */ +void uart_init(void); +void rtc_init(int invalid); +void isa_dma_init(void); + #endif /* ARCH_X86_CPU_H */