diff options
author | Tom Rini <trini@konsulko.com> | 2021-05-03 16:48:54 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-07 10:17:54 -0400 |
commit | 8627db79cab3805a493f7454100dcb968ac67862 (patch) | |
tree | 4d2a84d6125b5c379b30289b5c25002342a17573 /board/freescale/t104xrdb | |
parent | 12e3547f5af9c3da3360c3d547e16a76291a8b59 (diff) | |
download | u-boot-8627db79cab3805a493f7454100dcb968ac67862.tar.gz |
freescale: Drop unnecessary cpld_data_t non-typedef
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>
Diffstat (limited to 'board/freescale/t104xrdb')
-rw-r--r-- | board/freescale/t104xrdb/cpld.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/freescale/t104xrdb/cpld.h b/board/freescale/t104xrdb/cpld.h index a816aef10a..769883f946 100644 --- a/board/freescale/t104xrdb/cpld.h +++ b/board/freescale/t104xrdb/cpld.h @@ -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 */ |