diff mbox series

[edk2,edk2-staging,05/19] IntelUndiPkg/GigUndiDxe: move BRAND_STRUCT declaration after type definition

Message ID 20181106175833.26964-6-ard.biesheuvel@linaro.org
State Superseded
Headers show
Series IntelUndiPkg/GigUndiDxe: build fixes for AARCH64/ARM/GCC | expand

Commit Message

Ard Biesheuvel Nov. 6, 2018, 5:58 p.m. UTC
Move the extern declaration of mBrandingTable[] after the definition of
the type. This solves a build issue with GCC.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

---
 IntelUndiPkg/GigUndiDxe/DeviceSupport.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-- 
2.19.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel

Comments

Ryszard Knop Jan. 29, 2019, 4:02 p.m. UTC | #1
Hmm, BRAND_STRUCT_S could be simplified into a single struct def -
works on both MSVC and GCC.

Reviewed-by: Ryszard Knop <ryszard.knop@linux.intel.com>


On Tue, 2018-11-06 at 18:58 +0100, ard.biesheuvela wrote:
> Move the extern declaration of mBrandingTable[] after the definition

> of

> the type. This solves a build issue with GCC.

> 

> Contributed-under: TianoCore Contribution Agreement 1.1

> Signed-off-by: Ard Biesheuvel <ard.biesheuvel at linaro.org>

> ---

>  IntelUndiPkg/GigUndiDxe/DeviceSupport.h | 6 +++---

>  1 file changed, 3 insertions(+), 3 deletions(-)

> 

> diff --git a/IntelUndiPkg/GigUndiDxe/DeviceSupport.h

> b/IntelUndiPkg/GigUndiDxe/DeviceSupport.h

> index e156b587f6a7..e2b730131f8e 100644

> --- a/IntelUndiPkg/GigUndiDxe/DeviceSupport.h

> +++ b/IntelUndiPkg/GigUndiDxe/DeviceSupport.h

> @@ -33,9 +33,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE

> POSSIBILITY OF SUCH DAMAGE.

>  

>  typedef struct BRAND_STRUCT_S BRAND_STRUCT;

>  

> -extern BRAND_STRUCT mBrandingTable[];

> -extern UINTN        mBrandingTableSize;

> -

>  /* Defines */

>  #define INVALID_VENDOR_ID     0xFFFF

>  #define INVALID_SUBVENDOR_ID  0xFFFF

> @@ -53,6 +50,9 @@ struct BRAND_STRUCT_S {

>    CHAR16 *BrandString;

>  };

>  

> +extern BRAND_STRUCT mBrandingTable[];

> +extern UINTN        mBrandingTableSize;

> +

>  /* Function declarations */

>  

>  /** Returns pointer to current device's branding string (looks for

> best match)


_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
diff mbox series

Patch

diff --git a/IntelUndiPkg/GigUndiDxe/DeviceSupport.h b/IntelUndiPkg/GigUndiDxe/DeviceSupport.h
index e156b587f6a7..e2b730131f8e 100644
--- a/IntelUndiPkg/GigUndiDxe/DeviceSupport.h
+++ b/IntelUndiPkg/GigUndiDxe/DeviceSupport.h
@@ -33,9 +33,6 @@  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 typedef struct BRAND_STRUCT_S BRAND_STRUCT;
 
-extern BRAND_STRUCT mBrandingTable[];
-extern UINTN        mBrandingTableSize;
-
 /* Defines */
 #define INVALID_VENDOR_ID     0xFFFF
 #define INVALID_SUBVENDOR_ID  0xFFFF
@@ -53,6 +50,9 @@  struct BRAND_STRUCT_S {
   CHAR16 *BrandString;
 };
 
+extern BRAND_STRUCT mBrandingTable[];
+extern UINTN        mBrandingTableSize;
+
 /* Function declarations */
 
 /** Returns pointer to current device's branding string (looks for best match)