Change _CR() to BASE_CR() to follow naming convention

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6888 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
mdkinney
2008-12-06 01:23:24 +00:00
parent 2d78cc816e
commit 50d7ebad92
6 changed files with 9 additions and 9 deletions

View File

@@ -1637,11 +1637,11 @@ Dhcp4ParseCheckOption (
if (Parse->Index <= Parse->OptionCount) {
//
// Use _CR to get the memory position of EFI_DHCP4_PACKET_OPTION for
// Use BASE_CR to get the memory position of EFI_DHCP4_PACKET_OPTION for
// the EFI_DHCP4_PACKET_OPTION->Data because DhcpIterateOptions only
// pass in the point to option data.
//
Parse->Option[Parse->Index - 1] = _CR (Data, EFI_DHCP4_PACKET_OPTION, Data);
Parse->Option[Parse->Index - 1] = BASE_CR (Data, EFI_DHCP4_PACKET_OPTION, Data);
}
return EFI_SUCCESS;