aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mod_devicetable.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mod_devicetable.h')
-rw-r--r--include/linux/mod_devicetable.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h
index 45e921401b06..f2ac87c613a5 100644
--- a/include/linux/mod_devicetable.h
+++ b/include/linux/mod_devicetable.h
@@ -564,6 +564,15 @@ struct x86_cpu_id {
564#define X86_MODEL_ANY 0 564#define X86_MODEL_ANY 0
565#define X86_FEATURE_ANY 0 /* Same as FPU, you can't test for that */ 565#define X86_FEATURE_ANY 0 /* Same as FPU, you can't test for that */
566 566
567/*
568 * Generic table type for matching CPU features.
569 * @feature: the bit number of the feature (0 - 65535)
570 */
571
572struct cpu_feature {
573 __u16 feature;
574};
575
567#define IPACK_ANY_FORMAT 0xff 576#define IPACK_ANY_FORMAT 0xff
568#define IPACK_ANY_ID (~0) 577#define IPACK_ANY_ID (~0)
569struct ipack_device_id { 578struct ipack_device_id {