]> git.baikalelectronics.ru Git - uboot.git/commitdiff
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 c05f536806fb5c6a5bcc7d0e1a2c3f27326f7e4c..bd40cc319a891173f5bf3cee179bb0478b91cf73 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 a816aef10a42a6902d8e26739e03c23d8f0c9c38..769883f9461f1665fce45acd945fe4b82c23720c 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 bd6c203742e3d1d0b6c85aa02befab3c628fc303..a623b1811faff8fc8622f2ff0a31f0a101e9d899 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);