Skip to content

Commit 1b83ad7

Browse files
committed
minor fixes
1 parent 10cfe37 commit 1b83ad7

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

HIRS_Utils/src/main/java/hirs/utils/tpm/eventlog/events/EvNoAction.java

-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ public EvNoAction(final byte[] eventData) throws UnsupportedEncodingException {
9292
} else if (signature.contains("NvIndexDynamic")) {
9393
NvIndexDynamicEventLogData nvIndexDynamicEvent = new NvIndexDynamicEventLogData(eventData);
9494
noActionInfo += nvIndexDynamicEvent.toString();
95-
pciidsFileStatus = nvIndexDynamicEvent.getPciidsFileStatus();
9695
} else {
9796
noActionInfo = " EV_NO_ACTION event named \"" + signature
9897
+ "\" encountered but support for processing it has not been"

HIRS_Utils/src/main/java/hirs/utils/tpm/eventlog/events/NvIndexDynamicEventLogData.java

+1-11
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* UINT16 DescriptionSize;
2323
* UINT8 Description[DescriptionSize];
2424
* UINT16 DataSize;
25-
* DEVICE_SECURITY_EVENT_DATA2 Data[DataSize];
25+
* UINT8 Data[DataSize];
2626
* } NV_INDEX_DYNAMIC_EVENT_LOG_DATA;
2727
* <p>
2828
*/
@@ -38,16 +38,6 @@ public class NvIndexDynamicEventLogData {
3838
*/
3939
private String nvIndexDynamicInfo = "";
4040

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-
5141
/**
5242
* NvIndexInstanceEventLogData constructor.
5343
*

0 commit comments

Comments
 (0)