summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Library/RegisterFilterLib.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Include/Library/RegisterFilterLib.h')
-rw-r--r--MdePkg/Include/Library/RegisterFilterLib.h35
1 files changed, 18 insertions, 17 deletions
diff --git a/MdePkg/Include/Library/RegisterFilterLib.h b/MdePkg/Include/Library/RegisterFilterLib.h
index c4402da7d8..75f359c5c5 100644
--- a/MdePkg/Include/Library/RegisterFilterLib.h
+++ b/MdePkg/Include/Library/RegisterFilterLib.h
@@ -35,9 +35,9 @@ typedef enum {
BOOLEAN
EFIAPI
FilterBeforeIoRead (
- IN FILTER_IO_WIDTH Width,
- IN UINTN Address,
- IN OUT VOID *Buffer
+ IN FILTER_IO_WIDTH Width,
+ IN UINTN Address,
+ IN OUT VOID *Buffer
);
/**
@@ -56,6 +56,7 @@ FilterAfterIoRead (
IN UINTN Address,
IN VOID *Buffer
);
+
/**
Filter IO Write operation before wirte IO port.
It is used to filter IO operation.
@@ -79,13 +80,13 @@ FilterBeforeIoWrite (
IN VOID *Buffer
);
- /**
- Trace IO Write operation after wirte IO port.
- It is used to trace IO operation.
+/**
+Trace IO Write operation after wirte IO port.
+It is used to trace IO operation.
- @param[in] Width Signifies the width of the I/O operation.
- @param[in] Address The base address of the I/O operation.
- @param[in] Buffer The source buffer from which to BeforeWrite data.
+@param[in] Width Signifies the width of the I/O operation.
+@param[in] Address The base address of the I/O operation.
+@param[in] Buffer The source buffer from which to BeforeWrite data.
**/
VOID
@@ -188,8 +189,8 @@ FilterAfterMmIoWrite (
BOOLEAN
EFIAPI
FilterBeforeMsrRead (
- IN UINT32 Index,
- IN OUT UINT64 *Value
+ IN UINT32 Index,
+ IN OUT UINT64 *Value
);
/**
@@ -202,8 +203,8 @@ FilterBeforeMsrRead (
VOID
EFIAPI
FilterAfterMsrRead (
- IN UINT32 Index,
- IN UINT64 *Value
+ IN UINT32 Index,
+ IN UINT64 *Value
);
/**
@@ -222,8 +223,8 @@ FilterAfterMsrRead (
BOOLEAN
EFIAPI
FilterBeforeMsrWrite (
- IN UINT32 Index,
- IN UINT64 *Value
+ IN UINT32 Index,
+ IN UINT64 *Value
);
/**
@@ -236,8 +237,8 @@ FilterBeforeMsrWrite (
VOID
EFIAPI
FilterAfterMsrWrite (
- IN UINT32 Index,
- IN UINT64 *Value
+ IN UINT32 Index,
+ IN UINT64 *Value
);
#endif // REGISTER_FILTER_LIB_H_