]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
x86/cpu: Fix the description of X86_MATCH_VFM_STEPS()
authorPawan Gupta <pawan.kumar.gupta@linux.intel.com>
Tue, 11 Mar 2025 15:02:05 +0000 (08:02 -0700)
committerIngo Molnar <mingo@kernel.org>
Wed, 19 Mar 2025 10:16:33 +0000 (11:16 +0100)
The comments needs to reflect an implementation change.

No functional change.

Signed-off-by: Pawan Gupta <pawan.kumar.gupta@linux.intel.com>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20250311-add-cpu-type-v8-1-e8514dcaaff2@linux.intel.com
arch/x86/include/asm/cpu_device_id.h

index ba32e0f44cba70cbca5915058eaec329c898c2ab..9ebc263832ff88df7b2ba09d9a3c0b6f9801d467 100644 (file)
 
 #define __X86_STEPPINGS(mins, maxs)    GENMASK(maxs, mins)
 /**
- * X86_MATCH_VFM_STEPPINGS - Match encoded vendor/family/model/stepping
+ * X86_MATCH_VFM_STEPS - Match encoded vendor/family/model and steppings
+ *                      range.
  * @vfm:       Encoded 8-bits each for vendor, family, model
- * @steppings: Bitmask of steppings to match
+ * @min_step:  Lowest stepping number to match
+ * @max_step:  Highest stepping number to match
  * @data:      Driver specific data or NULL. The internal storage
  *             format is unsigned long. The supplied value, pointer
  *             etc. is cast to unsigned long internally.