convert from svn repository: remove tags directory
[lttv.git] / trunk / tests / kernel / test-tsc-sync2.c
CommitLineData
249d5ccd 1/* test-async-tsc.c
2 *
3 * test async tsc on AMD.
4 */
5
6
7#include <asm/atomic.h>
8#include <linux/module.h>
9#include <asm/timex.h>
10
11static int __init test_init(void)
12{
13 test_tsc_synchronization();
14 return -EPERM;
15}
16
17static void __exit test_exit(void)
18{
19}
20
21module_init(test_init);
22module_exit(test_exit);
23
24MODULE_LICENSE("GPL");
25MODULE_AUTHOR("Mathieu Desnoyers");
26MODULE_DESCRIPTION("sync async tsc");
27
This page took 0.02317 seconds and 4 git commands to generate.