minor fixes

This commit is contained in:
iadgovuser58 2024-09-26 16:45:49 -04:00
parent 10cfe37ad2
commit 1b83ad727a
2 changed files with 1 additions and 12 deletions

View File

@ -92,7 +92,6 @@ public class EvNoAction {
} else if (signature.contains("NvIndexDynamic")) {
NvIndexDynamicEventLogData nvIndexDynamicEvent = new NvIndexDynamicEventLogData(eventData);
noActionInfo += nvIndexDynamicEvent.toString();
pciidsFileStatus = nvIndexDynamicEvent.getPciidsFileStatus();
} else {
noActionInfo = " EV_NO_ACTION event named \"" + signature
+ "\" encountered but support for processing it has not been"

View File

@ -22,7 +22,7 @@ import java.nio.charset.StandardCharsets;
* UINT16 DescriptionSize;
* UINT8 Description[DescriptionSize];
* UINT16 DataSize;
* DEVICE_SECURITY_EVENT_DATA2 Data[DataSize];
* UINT8 Data[DataSize];
* } NV_INDEX_DYNAMIC_EVENT_LOG_DATA;
* <p>
*/
@ -38,16 +38,6 @@ public class NvIndexDynamicEventLogData {
*/
private String nvIndexDynamicInfo = "";
/**
* Track status of pci.ids
* This is only used for events that access the pci.ids file.
* Default is normal status (normal status is from-filesystem).
* Status will only change IF this is an event that uses this file,
* and if that event causes a different status.
*/
@Getter
private String pciidsFileStatus = UefiConstants.FILESTATUS_FROM_FILESYSTEM;
/**
* NvIndexInstanceEventLogData constructor.
*