blob: 1a69178e2e893a7d8d9508a7e755b36df9db7fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef SOUTHBRIDGE_INTEL_COMMON_HPET_H
#define SOUTHBRIDGE_INTEL_COMMON_HPET_H
#include <stdint.h>
void enable_hpet(void);
void hpet_udelay(u32 delay);
#endif /* SOUTHBRIDGE_INTEL_COMMON_HPET_H */
|