From bdc825139c17568d22105ed66b6c65221cc397ec Mon Sep 17 00:00:00 2001 From: vanjeff Date: Mon, 20 Apr 2009 05:47:57 +0000 Subject: Changed ID into Id. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8130 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Universal/Network/SnpDxe/Snp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'MdeModulePkg/Universal/Network') diff --git a/MdeModulePkg/Universal/Network/SnpDxe/Snp.c b/MdeModulePkg/Universal/Network/SnpDxe/Snp.c index dde0d6021f..7e98baa8eb 100644 --- a/MdeModulePkg/Universal/Network/SnpDxe/Snp.c +++ b/MdeModulePkg/Universal/Network/SnpDxe/Snp.c @@ -178,13 +178,13 @@ SimpleNetworkDriverSupported ( // // Check to see if !PXE structure is valid. Paragraph alignment of !PXE structure is required. // - if (NiiProtocol->ID & 0x0F) { + if (NiiProtocol->Id & 0x0F) { DEBUG ((EFI_D_NET, "\n!PXE structure is not paragraph aligned.\n")); Status = EFI_UNSUPPORTED; goto Done; } - Pxe = (PXE_UNDI *) (UINTN) (NiiProtocol->ID); + Pxe = (PXE_UNDI *) (UINTN) (NiiProtocol->Id); // // Verify !PXE revisions. @@ -341,7 +341,7 @@ SimpleNetworkDriverStart ( DEBUG ((EFI_D_INFO, "Start(): UNDI3.1 found\n")); - Pxe = (PXE_UNDI *) (UINTN) (Nii->ID); + Pxe = (PXE_UNDI *) (UINTN) (Nii->Id); if (Calc8BitCksum (Pxe, Pxe->hw.Len) != 0) { DEBUG ((EFI_D_NET, "\n!PXE checksum is not correct.\n")); -- cgit v1.2.3