hc
2024-08-13 72be3801e63d82671c9d90577a9efb3126a6aa37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From 9ed1946cef876acd5346ae806eecd7fc2e1e5341 Mon Sep 17 00:00:00 2001
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Date: Sat, 3 Oct 2020 10:32:48 +0200
Subject: [PATCH] plt.h: fix build with gcc 10
 
Drop EFUSE_PARAMETER_TYPE_ENM to avoid the following build failure with
gcc 10 (which defaults to -fno-common):
 
/home/naourr/work/instance-1/output-1/host/lib/gcc/arm-buildroot-linux-gnueabihf/10.2.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld: misc_cmds.o:(.bss+0x0): multiple definition of `EFUSE_PARAMETER_TYPE_ENM'; nvs.o:(.bss+0x0): first defined here
 
Fixes:
 - http://autobuild.buildroot.org/results/e96c70910544085dc5299fa59f80ab9c5922fde2
 
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Upstream status: https://github.com/gxk/ti-utils/pull/2]
---
 plt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 
diff --git a/plt.h b/plt.h
index 523fded..8ba01c9 100644
--- a/plt.h
+++ b/plt.h
@@ -363,7 +363,7 @@ enum EFUSE_PARAMETER_TYPE_ENMT {
     TX_BIP_PD_BUFFER_VBIAS_ERROR_E,
     EFUSE_NUMBER_OF_PARAMETERS_E,
     EFUSE_LAST_PARAMETER_E = (EFUSE_NUMBER_OF_PARAMETERS_E - 1)
-} EFUSE_PARAMETER_TYPE_ENM;
+};
 
 int get_mac_addr(int ifc_num, unsigned char *mac_addr);
 
-- 
2.28.0