blob: 2ba8745c66631be0672daaad5e03366c4c3c37bf [file] [log] [blame]
Markus Metzger8a327f62009-03-13 10:45:07 +01001/*
2 * Debug Store support - selftest
3 *
4 *
5 * Copyright (C) 2009 Intel Corporation.
6 * Markus Metzger <markus.t.metzger@intel.com>, 2009
7 */
8
9#ifdef CONFIG_X86_DS_SELFTEST
10extern int ds_selftest_bts(void);
11extern int ds_selftest_pebs(void);
12#else
13static inline int ds_selftest_bts(void) { return 0; }
14static inline int ds_selftest_pebs(void) { return 0; }
Ingo Molnare9a22d12009-03-13 11:54:40 +010015#endif