Removed CommonHeader.h generated file from the MdePkg.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2922 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
AJFISH
2007-06-29 23:22:13 +00:00
parent bd0aee7629
commit f734a10ab1
272 changed files with 325 additions and 782 deletions

View File

@ -43,9 +43,6 @@
#
################################################################################
[Sources.common]
CommonHeader.h
[Sources.Ia32]
x86Cache.c

View File

@ -1,33 +0,0 @@
/**@file
Common header file shared by all source files.
This file includes package header files, library classes and protocol, PPI & GUID definitions.
Copyright (c) 2007 - 2007, Intel Corporation
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 __COMMON_HEADER_H_
#define __COMMON_HEADER_H_
//
// The package level header files this module uses
//
#include <Base.h>
//
// The protocols, PPI and GUID defintions for this module
//
//
// The Library classes this module consumes
//
#include <Library/CacheMaintenanceLib.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#endif

View File

@ -15,7 +15,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <Base.h>
#include <Library/DebugLib.h>
/**
Invalidates the entire instruction cache in cache coherency domain of the

View File

@ -16,7 +16,9 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
/**
Invalidates the entire instruction cache in cache coherency domain of the

View File

@ -17,7 +17,9 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
//
// This size must be at or below the smallest cache size possible among all

View File

@ -45,7 +45,7 @@
[Sources.common]
IoLibMmioBuffer.c
CommonHeader.h
BaseIoLibIntrinsicInternal.h
[Sources.Ia32]
IoHighLevel.c

View File

@ -26,7 +26,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseIoLibIntrinsicInternal.h"
/**
Reads an 8-bit I/O port, performs a bitwise inclusive OR, and writes the

View File

@ -17,7 +17,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseIoLibIntrinsicInternal.h"
/**
Reads a 64-bit I/O port.

View File

@ -26,7 +26,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseIoLibIntrinsicInternal.h"
/**
Reads an 8-bit MMIO register.

View File

@ -17,7 +17,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseIoLibIntrinsicInternal.h"
#define MAP_PORT_BASE_TO_MEM(_Port) \
((((_Port) & 0xfffc) << 10) | ((_Port) & 0x0fff))

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseIoLibIntrinsicInternal.h"
/**
Copy data from MMIO region to system memory by using 8-bit access.

View File

@ -25,7 +25,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseIoLibIntrinsicInternal.h"
//
// Microsoft Visual Studio 7.1 Function Prototypes for I/O Intrinsics

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -77,7 +77,6 @@
LinkedList.c
String.c
BaseLibInternals.h
CommonHeader.h
[Sources.Ia32]
Ia32/Wbinvd.c

View File

@ -15,10 +15,13 @@
#ifndef __BASE_LIB_INTERNALS__
#define __BASE_LIB_INTERNALS__
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <Base.h>
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/DebugLib.h>
#include <Library/TimerLib.h>
#include <Library/PcdLib.h>
#define QUIENT_MAX_UINTN_DIVIDED_BY_10 ((UINTN) -1 / 10)
#define REMINDER_MAX_UINTN_DIVIDED_BY_10 ((UINTN) -1 % 10)

View File

@ -17,7 +17,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -18,7 +18,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
/**
Calculate the sum of all elements in a buffer in unit of UINT8.

View File

@ -1,35 +0,0 @@
/**@file
Common header file shared by all source files.
This file includes package header files, library classes and protocol, PPI & GUID definitions.
Copyright (c) 2007 - 2007, Intel Corporation.
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 __COMMON_HEADER_H_
#define __COMMON_HEADER_H_
//
// The package level header files this module uses
//
#include <Base.h>
//
// The protocols, PPI and GUID defintions for this module
//
//
// The Library classes this module consumes
//
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/DebugLib.h>
#include <Library/TimerLib.h>
#include <Library/PcdLib.h>
#endif

View File

@ -17,7 +17,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
/**
Disables CPU interrupts and returns the interrupt state prior to the disable

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
/**
Executes an infinite loop.

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
//
// Microsoft Visual Studio 7.1 Function Prototypes for I/O Intrinsics

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
VOID
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT32
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT32
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
VOID
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
VOID
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
VOID
EFIAPI

View File

@ -15,7 +15,9 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
#if _MSC_EXTENSIONS
__declspec (naked)
VOID
@ -49,3 +51,4 @@ InternalX86DisablePaging32 (
}
}
#endif

View File

@ -17,7 +17,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "../BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -16,7 +16,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
VOID
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
VOID
EFIAPI

View File

@ -15,7 +15,9 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
#if _MSC_EXTENSIONS
__declspec (naked)
VOID
@ -49,3 +51,4 @@ InternalX86EnablePaging32 (
}
}
#endif

View File

@ -1,7 +1,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
;------------------------------------------------------------------------------
;

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
VOID *
EFIAPI

View File

@ -15,7 +15,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
VOID
EFIAPI

View File

@ -15,7 +15,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
VOID
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT32
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT32
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT32
EFIAPI

View File

@ -17,7 +17,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
/**
Transfers control to a function starting with a new stack.

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
VOID
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
__declspec (naked)
VOID

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT32
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -17,7 +17,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include "../BaseLibInternals.h"

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT16
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT16
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINTN
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT16
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT16
EFIAPI

View File

@ -15,7 +15,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
VOID
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT16
EFIAPI

View File

@ -15,7 +15,8 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
#include <BaseLibInternals.h>
VOID
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT16
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT16
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT16
EFIAPI

View File

@ -15,7 +15,7 @@
//
// Include common header file for this module.
//
#include "CommonHeader.h"
UINT64
EFIAPI

Some files were not shown because too many files have changed in this diff Show More