remove '../' from Base Library.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5878 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff 2008-09-11 09:12:14 +00:00
parent 3ec9bc1557
commit 835849540d
4 changed files with 21 additions and 31 deletions

View File

@ -2,7 +2,7 @@
# Component description file for Base Library
#
# Base Library implementation.
# Copyright (c) 2007, Intel Corporation.
# Copyright (c) 2007 - 2008, 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
@ -353,7 +353,7 @@
Ia32/LShiftU64.S | GCC
SynchronizationGcc.c | GCC
Ia32/DivS64x64Remainder.c
Ia32DivS64x64Remainder.c
Ia32/InternalSwitchStack.c
Ia32/Non-existing.c
Unaligned.c

View File

@ -1,7 +1,7 @@
/** @file
Non-existing BaseLib functions on Ia32
Copyright (c) 2006, Intel Corporation
Copyright (c) 2006 - 2008, 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
@ -12,13 +12,7 @@
**/
//
// Include common header file for this module.
//
#include "../BaseLibInternals.h"
#include <Library/DebugLib.h>
/**
Disables the 64-bit paging mode on the CPU.

View File

@ -1,7 +1,7 @@
/** @file
Integer division worker functions for Ia32.
Copyright (c) 2006, Intel Corporation<BR>
Copyright (c) 2006 - 2008, 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
@ -12,12 +12,7 @@
**/
//
// Include common header file for this module.
//
#include "../BaseLibInternals.h"
#include "BaseLibInternals.h"
/**
Worker function that Divides a 64-bit signed integer by a 64-bit signed integer and

View File

@ -1,7 +1,7 @@
/** @file
Non-existing BaseLib functions on x64
Copyright (c) 2006, Intel Corporation
Copyright (c) 2006 - 2008, 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
@ -12,7 +12,8 @@
**/
#include "../BaseLibInternals.h"
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
/**
Enables the 32-bit paging mode on the CPU.
@ -57,7 +58,7 @@ InternalX86EnablePaging32 (
)
{
//
// This function cannot work on X64 platform
// This function cannot work on x64 platform
//
ASSERT (FALSE);
}
@ -102,7 +103,7 @@ InternalX86DisablePaging32 (
)
{
//
// This function cannot work on X64 platform
// This function cannot work on x64 platform
//
ASSERT (FALSE);
}