In the past changes have been made to smbios->minor without updating the

smbios->bcdrev value.
Correct that by calculating bcdrev from the major/minor values.

Reported by:	bcran
Reviewed by:	bcran, jhb
Approved by:	jhb (maintainer)
This commit is contained in:
Rodney W. Grimes 2020-04-07 23:17:44 +00:00
parent 9cf738228d
commit 9d3fd86663
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=359719

View File

@ -774,7 +774,7 @@ smbios_ep_initializer(struct smbios_entry_point *smbios_ep, uint32_t staddr)
memcpy(smbios_ep->ianchor, SMBIOS_ENTRY_IANCHOR,
SMBIOS_ENTRY_IANCHORLEN);
smbios_ep->staddr = staddr;
smbios_ep->bcdrev = 0x24;
smbios_ep->bcdrev = (smbios_ep->major & 0xf) << 4 | (smbios_ep->minor & 0xf);
}
static void