boot/x86: move HPET initialization to arch folder

Change-Id: Iac3f4923f132c4c3328fde5af1dad75af5b2efbd
Reviewed-on: https://review.haiku-os.org/c/haiku/+/4864
Tested-by: Commit checker robot <[email protected]>
Reviewed-by: Fredrik Holmqvist <[email protected]>
Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
David Karoly
2022-01-28 10:25:29 +00:00
committed by Adrien Destugues
parent 8d743ebd60
commit 367beefadc
7 changed files with 31 additions and 72 deletions
@@ -0,0 +1,21 @@
/*
* Copyright 2008, Dustin Howett, [email protected]. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef BOOT_ARCH_HPET_H
#define BOOT_ARCH_HPET_H
#include <SupportDefs.h>
#include <arch/x86/arch_hpet.h>
#ifdef __cplusplus
extern "C" {
#endif
void hpet_init(void);
#ifdef __cplusplus
}
#endif
#endif /* BOOT_ARCH_HPET_H */