Commit 1b83ad7 1 parent 10cfe37 commit 1b83ad7 Copy full SHA for 1b83ad7
File tree 2 files changed +1
-12
lines changed
HIRS_Utils/src/main/java/hirs/utils/tpm/eventlog/events
2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ public EvNoAction(final byte[] eventData) throws UnsupportedEncodingException {
92
92
} else if (signature .contains ("NvIndexDynamic" )) {
93
93
NvIndexDynamicEventLogData nvIndexDynamicEvent = new NvIndexDynamicEventLogData (eventData );
94
94
noActionInfo += nvIndexDynamicEvent .toString ();
95
- pciidsFileStatus = nvIndexDynamicEvent .getPciidsFileStatus ();
96
95
} else {
97
96
noActionInfo = " EV_NO_ACTION event named \" " + signature
98
97
+ "\" encountered but support for processing it has not been"
Original file line number Diff line number Diff line change 22
22
* UINT16 DescriptionSize;
23
23
* UINT8 Description[DescriptionSize];
24
24
* UINT16 DataSize;
25
- * DEVICE_SECURITY_EVENT_DATA2 Data[DataSize];
25
+ * UINT8 Data[DataSize];
26
26
* } NV_INDEX_DYNAMIC_EVENT_LOG_DATA;
27
27
* <p>
28
28
*/
@@ -38,16 +38,6 @@ public class NvIndexDynamicEventLogData {
38
38
*/
39
39
private String nvIndexDynamicInfo = "" ;
40
40
41
- /**
42
- * Track status of pci.ids
43
- * This is only used for events that access the pci.ids file.
44
- * Default is normal status (normal status is from-filesystem).
45
- * Status will only change IF this is an event that uses this file,
46
- * and if that event causes a different status.
47
- */
48
- @ Getter
49
- private String pciidsFileStatus = UefiConstants .FILESTATUS_FROM_FILESYSTEM ;
50
-
51
41
/**
52
42
* NvIndexInstanceEventLogData constructor.
53
43
*
You can’t perform that action at this time.
0 commit comments