bhyve: fix smbiostbl.c style issues and add comment about date format

Fix a couple of style issues introduced in my previous commit.
Add a comment explaining that the SMBIOS specification defines the date
format to be mm/dd/yyyy, which is why we don't use ISO 8601.
This commit is contained in:
Rebecca Cran 2020-11-27 07:53:15 +00:00
parent df9c69d239
commit 5285d5e8e1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=368092

View File

@ -51,8 +51,9 @@ __FBSDID("$FreeBSD$");
#define SMBIOS_BASE 0xF1000
#define FIRMWARE_VERSION "13.0"
#define FIRMWARE_RELEASE_DATE "11/10/2020"
#define FIRMWARE_VERSION "13.0"
/* The SMBIOS specification defines the date format to be mm/dd/yyyy */
#define FIRMWARE_RELEASE_DATE "11/10/2020"
/* BHYVE_ACPI_BASE - SMBIOS_BASE) */
#define SMBIOS_MAX_LENGTH (0xF2400 - 0xF1000)