From 6104c4f1ea50013db6067a9149d3a02b09c2cadf Mon Sep 17 00:00:00 2001 From: "taiyi.pei" Date: Sat, 24 Sep 2022 11:41:48 +0800 Subject: [PATCH] fixed f428830 from https://gitee.com/taiyipei/developtools_syscap_codec/pulls/180 remove unused code Signed-off-by: taiyi.pei --- src/syscap_tool.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/syscap_tool.c b/src/syscap_tool.c index 402d00d..3f16580 100644 --- a/src/syscap_tool.c +++ b/src/syscap_tool.c @@ -27,14 +27,6 @@ #include "create_pcid.h" #include "syscap_tool.h" -typedef struct ProductCompatibilityIDHead { - uint16_t apiVersion : 15; - uint16_t apiVersionType : 1; - uint16_t systemType : 3; - uint16_t reserved : 13; - uint32_t manufacturerID; -} PCIDHead; - typedef struct RequiredProductCompatibilityIDHead { uint16_t apiVersion : 15; uint16_t apiVersionType : 1; @@ -730,4 +722,4 @@ int32_t ComparePcidWithRpcidString(char *pcidFile, char *rpcidFile, uint32_t typ printf("Fail! The pcid does not meet the rpcid\n"); } return 0; -} \ No newline at end of file +} -- Gitee