blob: d8476e424c2fbffb9f8b43d891f306b409a91b30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef CPU_INTEL_FSB_H
#define CPU_INTEL_FSB_H
/*
* This function returns round up 3 * get_timer_fsb()
*/
int get_ia32_fsb_x3(void);
#endif /* CPU_INTEL_FSB_H */
|