We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88b498b commit b210c01Copy full SHA for b210c01
src/arm/linux/aarch32-isa.c
@@ -149,6 +149,8 @@ void cpuinfo_arm_linux_decode_isa_from_proc_cpuinfo(
149
cpuinfo_log_warning("VDOT instructions disabled: cause occasional SIGILL on Unisoc T310");
150
} else if (chipset->series == cpuinfo_arm_chipset_series_unisoc_ums && chipset->model == 312) {
151
cpuinfo_log_warning("VDOT instructions disabled: cause occasional SIGILL on Unisoc UMS312");
152
+ } else if (chipset->vendor == cpuinfo_arm_chipset_vendor_unknown) {
153
+ cpuinfo_log_warning("VDOT instructions disabled: unknown chipset");
154
} else {
155
switch (midr & (CPUINFO_ARM_MIDR_IMPLEMENTER_MASK | CPUINFO_ARM_MIDR_PART_MASK)) {
156
case UINT32_C(0x4100D0B0): /* Cortex-A76 */
0 commit comments