summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BasePciLibPciExpress/PciLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BasePciLibPciExpress/PciLib.c')
-rw-r--r--MdePkg/Library/BasePciLibPciExpress/PciLib.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/MdePkg/Library/BasePciLibPciExpress/PciLib.c b/MdePkg/Library/BasePciLibPciExpress/PciLib.c
index 93f0af2..8cfa41c 100644
--- a/MdePkg/Library/BasePciLibPciExpress/PciLib.c
+++ b/MdePkg/Library/BasePciLibPciExpress/PciLib.c
@@ -1,7 +1,7 @@
/** @file
PCI Library using PC Express access.
- 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
@@ -63,10 +63,10 @@ UINT8
EFIAPI
PciWrite8 (
IN UINTN Address,
- IN UINT8 Data
+ IN UINT8 Value
)
{
- return PciExpressWrite8 (Address, Data);
+ return PciExpressWrite8 (Address, Value);
}
/**
@@ -391,10 +391,10 @@ UINT16
EFIAPI
PciWrite16 (
IN UINTN Address,
- IN UINT16 Data
+ IN UINT16 Value
)
{
- return PciExpressWrite16 (Address, Data);
+ return PciExpressWrite16 (Address, Value);
}
/**
@@ -719,10 +719,10 @@ UINT32
EFIAPI
PciWrite32 (
IN UINTN Address,
- IN UINT32 Data
+ IN UINT32 Value
)
{
- return PciExpressWrite32 (Address, Data);
+ return PciExpressWrite32 (Address, Value);
}
/**