convert from svn repository: remove tags directory
[lttv.git] / trunk / tests / kernel / test-tsc-sync2.c
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
11 static int __init test_init(void)
12 {
13 test_tsc_synchronization();
14 return -EPERM;
15 }
16
17 static void __exit test_exit(void)
18 {
19 }
20
21 module_init(test_init);
22 module_exit(test_exit);
23
24 MODULE_LICENSE("GPL");
25 MODULE_AUTHOR("Mathieu Desnoyers");
26 MODULE_DESCRIPTION("sync async tsc");
27
This page took 0.028938 seconds and 4 git commands to generate.