Revision: 17090
          http://sourceforge.net/p/edk2/code/17090
Author:   jljusten
Date:     2015-04-01 08:23:01 +0000 (Wed, 01 Apr 2015)
Log Message:
-----------
OvmfPkg/SmbiosPlatformDxe: Fix build issue with VS2010

VS2010 doesn't accept an unsized array within a structure.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Laszlo Ersek <[email protected]>

Modified Paths:
--------------
    trunk/edk2/OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c

Modified: trunk/edk2/OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c
===================================================================
--- trunk/edk2/OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c    2015-04-01 
07:51:15 UTC (rev 17089)
+++ trunk/edk2/OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.c    2015-04-01 
08:23:01 UTC (rev 17090)
@@ -2,7 +2,7 @@
   This driver installs SMBIOS information for OVMF
 
   Copyright (c) 2011, Bei Guan <[email protected]>
-  Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
+  Copyright (c) 2011 - 2015, Intel Corporation. All rights reserved.<BR>
 
   This program and the accompanying materials
   are licensed and made available under the terms and conditions of the BSD 
License
@@ -16,13 +16,17 @@
 
 #include "SmbiosPlatformDxe.h"
 
+#define TYPE0_STRINGS \
+  "EFI Development Kit II / OVMF\0"     /* Vendor */ \
+  "0.0.0\0"                             /* BiosVersion */ \
+  "02/06/2015\0"                        /* BiosReleaseDate */
 //
 // Type definition and contents of the default Type 0 SMBIOS table.
 //
 #pragma pack(1)
 typedef struct {
   SMBIOS_TABLE_TYPE0 Base;
-  UINT8              Strings[];
+  UINT8              Strings[sizeof(TYPE0_STRINGS)];
 } OVMF_TYPE0;
 #pragma pack()
 
@@ -56,9 +60,7 @@
     0xFF   // UINT8                     EmbeddedControllerFirmwareMinorRelease
   },
   // Text strings (unformatted area)
-  "EFI Development Kit II / OVMF\0"     // Vendor
-  "0.0.0\0"                             // BiosVersion
-  "02/06/2015\0"                        // BiosReleaseDate
+  TYPE0_STRINGS
 };
 
 


------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to