diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-06-12 06:51:09 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-06-12 06:51:09 +0000 |
commit | 619eff3f290c7e893d858c16e70b641471a5a704 (patch) | |
tree | 50f9982e449b52fc342b72ab42708fe261468a7a /MdeModulePkg/Universal | |
parent | 9cf974f646a011c7e405f02b8aa7179650e66ddf (diff) | |
download | edk2-platforms-619eff3f290c7e893d858c16e70b641471a5a704.tar.xz |
clean EBC build.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5342 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal')
-rw-r--r-- | MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.c | 35 |
1 files changed, 12 insertions, 23 deletions
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.c b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.c index 8fc528f316..f8bdf5c945 100644 --- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.c +++ b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/PxeBcImpl.c @@ -2456,57 +2456,46 @@ EfiPxeLoadFile ( &Private->LoadFileCallback
);
}
+
//
// Check download status
//
- switch (Status) {
-
- case EFI_SUCCESS:
+ if (Status == EFI_SUCCESS) {
return EFI_SUCCESS;
- case EFI_BUFFER_TOO_SMALL:
+ } else if (Status == EFI_BUFFER_TOO_SMALL) {
if (Buffer != NULL) {
AsciiPrint ("PXE-E05: Download buffer is smaller than requested file.\n");
} else {
return Status;
}
- break;
- case EFI_DEVICE_ERROR:
+ } else if (Status == EFI_DEVICE_ERROR) {
AsciiPrint ("PXE-E07: Network device error.\n");
- break;
- case EFI_OUT_OF_RESOURCES:
+ } else if (Status == EFI_OUT_OF_RESOURCES) {
AsciiPrint ("PXE-E09: Could not allocate I/O buffers.\n");
- break;
- case EFI_NO_MEDIA:
+ } else if (Status == EFI_NO_MEDIA) {
AsciiPrint ("PXE-E12: Could not detect network connection.\n");
- break;
- case EFI_NO_RESPONSE:
+ } else if (Status == EFI_NO_RESPONSE) {
AsciiPrint ("PXE-E16: No offer received.\n");
- break;
- case EFI_TIMEOUT:
+ } else if (Status == EFI_TIMEOUT) {
AsciiPrint ("PXE-E18: Server response timeout.\n");
- break;
- case EFI_ABORTED:
+ } else if (Status == EFI_ABORTED) {
AsciiPrint ("PXE-E21: Remote boot cancelled.\n");
- break;
- case EFI_ICMP_ERROR:
+ } else if (Status == EFI_ICMP_ERROR) {
AsciiPrint ("PXE-E22: Client received ICMP error from server.\n");
- break;
- case EFI_TFTP_ERROR:
+ } else if (Status == EFI_TFTP_ERROR) {
AsciiPrint ("PXE-E23: Client received TFTP error from server.\n");
- break;
- default:
+ } else {
AsciiPrint ("PXE-E99: Unexpected network error.\n");
- break;
}
PxeBc->Stop (PxeBc);
|