freescale: Drop unnecessary cpld_data_t non-typedef
authorTom Rini <trini@konsulko.com>
Mon, 3 May 2021 20:48:54 +0000 (16:48 -0400)
committerTom Rini <trini@konsulko.com>
Wed, 7 Jul 2021 14:17:54 +0000 (10:17 -0400)
In some board cpld.h files the definition of the cpld_data struct
not-quite makes a typedef for cpld_data_t.  This problem is caught with
gcc-11 as a multiple definition error.  As there are no users of this
non-typedef, fix this by not declaring it one to begin with.

Cc: Priyanka Jain <priyanka.jain@nxp.com>
Cc: Shengzhou Liu <Shengzhou.Liu@nxp.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
board/freescale/t102xrdb/cpld.h
board/freescale/t104xrdb/cpld.h
board/freescale/t208xrdb/cpld.h

index c05f536..bd40cc3 100644 (file)
@@ -21,7 +21,7 @@ struct cpld_data {
        u8 boot_override;       /* 0x18 - Boot override register */
        u8 boot_config1;        /* 0x19 - Boot config override register*/
        u8 boot_config2;        /* 0x1A - Boot config override register*/
-} cpld_data_t;
+};
 
 
 /* Pointer to the CPLD register set */
index a816aef..769883f 100644 (file)
@@ -30,8 +30,7 @@ struct cpld_data {
        u8 boot_override;       /* 0x18 - Boot override register */
        u8 boot_config1;        /* 0x19 - Boot config override register*/
        u8 boot_config2;        /* 0x1A - Boot config override register*/
-} cpld_data_t;
-
+};
 
 /* Pointer to the CPLD register set */
 
index bd6c203..a623b18 100644 (file)
@@ -21,7 +21,7 @@ struct cpld_data {
        u8 boot_or;             /* 0x16 - Boot config override register */
        u8 boot_cfg1;           /* 0x17 - Boot configuration register 1 */
        u8 boot_cfg2;           /* 0x18 - Boot configuration register 2 */
-} cpld_data_t;
+};
 
 u8 cpld_read(unsigned int reg);
 void cpld_write(unsigned int reg, u8 value);