summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/Network/UefiPxeBcDxe
diff options
context:
space:
mode:
authorljin6 <ljin6@6f19259b-4bc3-4df7-8a09-765794883524>2010-01-28 08:30:11 +0000
committerljin6 <ljin6@6f19259b-4bc3-4df7-8a09-765794883524>2010-01-28 08:30:11 +0000
commitaf176a83f9edfc0a6f5e89edca4d2b021dec55f7 (patch)
tree17453f3a63a6d6b37f97a29e0e87c171a7616a8b /MdeModulePkg/Universal/Network/UefiPxeBcDxe
parent2c4297cf5616a28b8d0aef24a1a91603c0075f03 (diff)
downloadedk2-af176a83f9edfc0a6f5e89edca4d2b021dec55f7.zip
edk2-af176a83f9edfc0a6f5e89edca4d2b021dec55f7.tar.gz
edk2-af176a83f9edfc0a6f5e89edca4d2b021dec55f7.tar.bz2
Remove redundant arch definition in UefiPxeBcDxe.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9851 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/Network/UefiPxeBcDxe')
-rw-r--r--MdeModulePkg/Universal/Network/UefiPxeBcDxe/Arm/PxeArch.h22
-rw-r--r--MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.c45
-rw-r--r--MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.h36
-rw-r--r--MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ia32/PxeArch.h20
-rw-r--r--MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ipf/PxeArch.h20
-rw-r--r--MdeModulePkg/Universal/Network/UefiPxeBcDxe/X64/PxeArch.h20
6 files changed, 0 insertions, 163 deletions
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Arm/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Arm/PxeArch.h
deleted file mode 100644
index 1caccec..0000000
--- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Arm/PxeArch.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/** @file
- Defines PXE Arch type.
-
-Copyright (c) 2006, Intel Corporation.<BR>
-Portions copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>
-
-All rights reserved. This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#ifndef _EFI_PXE_ARCH_H_
-#define _EFI_PXE_ARCH_H_
-
-#define SYS_ARCH 0x0A
-
-#endif
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.c b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.c
deleted file mode 100644
index 9aa5aa4..0000000
--- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/** @file
- Defines PXE Arch type.
-
-Copyright (c) 2007, Intel Corporation.<BR>
-All rights reserved. This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-
-#include "PxeArch.h"
-
-UINT16 mSysArch = 0;
-/**
- Get the system architecture type.
-
- @return system architecture type.
-
-**/
-UINT16
-GetSysArch (
- VOID
- )
-{
- if (mSysArch == 0) {
- //
- // This is first call
- // Assign to invalid value
- //
- mSysArch = 0xFFFF;
-
- //
- // We do not know what is EBC architecture.
- // Maybe we can try to locate DebugSupport protocol to get ISA.
- // TBD now.
- //
- }
-
- return mSysArch;
-}
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.h
deleted file mode 100644
index 9d0b430..0000000
--- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ebc/PxeArch.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/** @file
- Defines PXE Arch type.
-
-Copyright (c) 2007, Intel Corporation.<BR>
-All rights reserved. This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#ifndef _EFI_PXE_ARCH_H_
-#define _EFI_PXE_ARCH_H_
-
-//
-// warning #175: subscript out of range
-//
-#pragma warning (disable: 175)
-
-#define SYS_ARCH GetSysArch()
-
-/**
- Get the system architecture type.
-
- @return system architecture type.
-
-**/
-UINT16
-GetSysArch (
- VOID
- );
-
-#endif
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ia32/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ia32/PxeArch.h
deleted file mode 100644
index 0d34191..0000000
--- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ia32/PxeArch.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/** @file
- Defines PXE Arch type.
-
-Copyright (c) 2006, Intel Corporation.<BR>
-All rights reserved. This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#ifndef _EFI_PXE_ARCH_H_
-#define _EFI_PXE_ARCH_H_
-
-#define SYS_ARCH 0x6
-
-#endif
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ipf/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ipf/PxeArch.h
deleted file mode 100644
index 9639136..0000000
--- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/Ipf/PxeArch.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/** @file
- Defines PXE Arch type.
-
-Copyright (c) 2006, Intel Corporation.<BR>
-All rights reserved. This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#ifndef _EFI_PXE_ARCH_H_
-#define _EFI_PXE_ARCH_H_
-
-#define SYS_ARCH 0x2
-
-#endif
diff --git a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/X64/PxeArch.h b/MdeModulePkg/Universal/Network/UefiPxeBcDxe/X64/PxeArch.h
deleted file mode 100644
index 3024d0e..0000000
--- a/MdeModulePkg/Universal/Network/UefiPxeBcDxe/X64/PxeArch.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/** @file
- Defines PXE Arch type.
-
-Copyright (c) 2006, Intel Corporation.<BR>
-All rights reserved. This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
-http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#ifndef _EFI_PXE_ARCH_H_
-#define _EFI_PXE_ARCH_H_
-
-#define SYS_ARCH 0x7
-
-#endif