11f8b65a79
Previous version of the patch was broken by the EFI refactoring. Change-Id: I6dd125100b22b2461c531bfd8f81b3dd28e2b751 Reviewed-on: https://review.haiku-os.org/c/haiku/+/2409 Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>
30 lines
435 B
C
30 lines
435 B
C
/*
|
|
* Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef BOOT_ARCH_CPU_H
|
|
#define BOOT_ARCH_CPU_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
void calculate_cpu_conversion_factor(uint8 channel);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#include <boot/vfs.h>
|
|
|
|
void ucode_load(BootVolume& volume);
|
|
|
|
|
|
#endif /* BOOT_ARCH_CPU_H */
|