intel/dev: Stop checking hwconfig values at driver runtime

We will move this check into the `intel_dev_info` tool. Unfortunately,
this means we will be much less likely to notice inconsistencies, but
the current strategy has proven to be far too noisy.

For example, if the driver was built in debug mode, then when test
suites are running thousands of tests, the current approach can lead
to thousands of messages being printed.

Closes: mesa/mesa#12141
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34243>
This commit is contained in:
Jordan Justen 2025-03-26 17:13:40 -07:00
parent 24c86ff345
commit bc86fd5b1f

View file

@ -1933,8 +1933,6 @@ intel_get_device_info_from_fd(int fd, struct intel_device_info *devinfo, int min
intel_device_info_init_was(devinfo);
intel_device_info_apply_workarounds(devinfo);
intel_check_hwconfig_items(fd, devinfo);
return true;
}