RE: [PATCH 1/6] x86/cpu: Break Vendor/Family/Model macros into separate header
From: Luck, Tony
Date: Wed Feb 11 2026 - 17:34:19 EST
>> + device->info.device_id = cpu_id >> 4;
>>
>
> I imagine this shifting the stepping. Should this be cpu_id & 0xF?
Fixing here seems to be better than changing the constants. But needs a "~"
/* Ignore the stepping */
device->info.device_id = cpu_id & ~ 0xF;
-Tony