mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-28 16:43:09 +00:00
Fix previous commit (r284357)
I forgot to convert the && to a || Pointyhat to: ngie X-MFC with: r283678, r284336, r284357
This commit is contained in:
parent
63605044cf
commit
62692eb1b9
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284358
@ -485,7 +485,7 @@ acpi_ibm_attach(device_t dev)
|
||||
/* Enable per-model events. */
|
||||
maker = kern_getenv("smbios.system.maker");
|
||||
product = kern_getenv("smbios.system.product");
|
||||
if (maker == NULL && product == NULL)
|
||||
if (maker == NULL || product == NULL)
|
||||
goto nosmbios;
|
||||
|
||||
for (i = 0; i < nitems(acpi_ibm_models); i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user