Adjust the field position of PROTOCOL_NOTIFY.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5858 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2008-09-09 05:19:46 +00:00
parent 4efb2b4d92
commit c79be85e9d
1 changed files with 2 additions and 2 deletions

View File

@ -86,9 +86,9 @@ typedef struct {
#define PROTOCOL_NOTIFY_SIGNATURE EFI_SIGNATURE_32('p','r','t','n')
typedef struct {
UINTN Signature;
PROTOCOL_ENTRY *Protocol;
LIST_ENTRY Link; // All notifications for this protocol
EFI_EVENT Event; // Event to notify
PROTOCOL_ENTRY *Protocol;
EFI_EVENT Event; // Event to notify //
LIST_ENTRY *Position; // Last position notified
} PROTOCOL_NOTIFY;