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 50f67eff27ef..9a165a213d93 100644
--- a/include/linux/mod_devicetable.h
+++ b/include/linux/mod_devicetable.h
@@ -572,6 +572,15 @@ struct x86_cpu_id {
572#define X86_MODEL_ANY 0 572#define X86_MODEL_ANY 0
573#define X86_FEATURE_ANY 0 /* Same as FPU, you can't test for that */ 573#define X86_FEATURE_ANY 0 /* Same as FPU, you can't test for that */
574 574
575/*
576 * Generic table type for matching CPU features.
577 * @feature: the bit number of the feature (0 - 65535)
578 */
579
580struct cpu_feature {
581 __u16 feature;
582};
583
575#define IPACK_ANY_FORMAT 0xff 584#define IPACK_ANY_FORMAT 0xff
576#define IPACK_ANY_ID (~0) 585#define IPACK_ANY_ID (~0)
577struct ipack_device_id { 586struct ipack_device_id {