x86, cpu: mv display_cacheinfo -> cpu_detect_cache_sizes
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kernel / ds_selftest.h
blob2ba8745c66631be0672daaad5e03366c4c3c37bf
1 /*
2 * Debug Store support - selftest
5 * Copyright (C) 2009 Intel Corporation.
6 * Markus Metzger <markus.t.metzger@intel.com>, 2009
7 */
9 #ifdef CONFIG_X86_DS_SELFTEST
10 extern int ds_selftest_bts(void);
11 extern int ds_selftest_pebs(void);
12 #else
13 static inline int ds_selftest_bts(void) { return 0; }
14 static inline int ds_selftest_pebs(void) { return 0; }
15 #endif