Date: Fri, 27 Nov 2020 07:53:15 +0000 (UTC) From: Rebecca Cran <bcran@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r368092 - head/usr.sbin/bhyve Message-ID: <202011270753.0AR7rFrf052659@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bcran Date: Fri Nov 27 07:53:15 2020 New Revision: 368092 URL: https://svnweb.freebsd.org/changeset/base/368092 Log: 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. Modified: head/usr.sbin/bhyve/smbiostbl.c Modified: head/usr.sbin/bhyve/smbiostbl.c ============================================================================== --- head/usr.sbin/bhyve/smbiostbl.c Fri Nov 27 05:13:52 2020 (r368091) +++ head/usr.sbin/bhyve/smbiostbl.c Fri Nov 27 07:53:15 2020 (r368092) @@ -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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011270753.0AR7rFrf052659>