DMI is Intel & Intel-compatible specific. Don't try to dump information
on non-compatible architectures, which results only in error message in
logs.
}
+/* DMI is intel-compatible specific */
+#if defined(__x86_64__) || defined(__i386__) || defined(__amd64__)
static void
udevGetDMIData(union _virNodeDevCapData *data)
{
}
return;
}
+#endif
static int udevSetupSystemDev(void)
goto out;
}
+#if defined(__x86_64__) || defined(__i386__) || defined(__amd64__)
udevGetDMIData(&def->caps->data);
+#endif
dev = virNodeDeviceAssignDef(&driverState->devs, def);
if (dev == NULL) {