blob: 39e392ebc8c2b37c34c5ddb183434fe7fc602454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __UM_TIMEX_H
#define __UM_TIMEX_H
/*
* Do not fall back to the host architecture header because latter likely
* includes facilities like cpu_feature_enabled() which are present only
* there. That would result in build breakages and/or efforts to "emulate"
* those facilities in UML.
*/
#include <asm-generic/timex.h>
#endif
|