summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2006-05-22 23:24:23 +0000
committerbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2006-05-22 23:24:23 +0000
commitf0ec738d392d85d8eb0cc77d66a2713076cb5ee7 (patch)
treec6036d13911e5d989a6ae6ceb6a1042517e72a01
parent6d97687e2266b0eb9b97d1b536f84ec753020c6a (diff)
downloadedk2-platforms-f0ec738d392d85d8eb0cc77d66a2713076cb5ee7.tar.xz
Fix capitalization.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@238 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h2
-rw-r--r--EdkModulePkg/Bus/Pci/CirrusLogic/Dxe/CirrusLogic5430.h2
-rw-r--r--EdkModulePkg/Bus/Pci/IdeBus/Dxe/ComponentName.c2
-rw-r--r--EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverConfiguration.c2
-rw-r--r--EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverDiagnostics.c2
-rw-r--r--EdkModulePkg/Bus/Pci/IdeBus/Dxe/idebus.h2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/ComponentName.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciCommand.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumerator.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumeratorSupport.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciHotPlugSupport.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciIo.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciOptionRomSupport.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciPowerManagement.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/PciResourceSupport.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.c2
-rw-r--r--EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.h4
-rw-r--r--EdkModulePkg/Bus/Pci/Uhci/Dxe/uhci.h2
-rw-r--r--EdkModulePkg/Bus/Pci/Undi/RuntimeDxe/Undi32.h2
-rw-r--r--EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.c2
-rw-r--r--EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.h2
-rw-r--r--EdkModulePkg/Bus/Scsi/ScsiDisk/Dxe/ScsiDisk.c2
-rw-r--r--EdkModulePkg/Bus/Usb/UsbBot/Dxe/bot.h2
-rw-r--r--EdkModulePkg/Bus/Usb/UsbBus/Dxe/ComponentName.c2
-rw-r--r--EdkModulePkg/Bus/Usb/UsbBus/Dxe/usbbus.h6
-rw-r--r--EdkModulePkg/Bus/Usb/UsbCbi/Dxe/cbi.h2
-rw-r--r--EdkModulePkg/Bus/Usb/UsbKb/Dxe/efikey.h2
-rw-r--r--EdkModulePkg/Bus/Usb/UsbMassStorage/Dxe/UsbMassStorage.h2
-rw-r--r--EdkModulePkg/Bus/Usb/UsbMouse/Dxe/usbmouse.h2
30 files changed, 33 insertions, 33 deletions
diff --git a/EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h b/EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h
index 486fd2dd0e..d705c65949 100644
--- a/EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h
+++ b/EdkModulePkg/Bus/Pci/AtapiPassThru/Dxe/AtapiPassThru.h
@@ -23,7 +23,7 @@ Revision History
#define _APT_H
-#include <IndustryStandard/Pci22.h>
+#include <IndustryStandard/pci22.h>
//
// bit definition
diff --git a/EdkModulePkg/Bus/Pci/CirrusLogic/Dxe/CirrusLogic5430.h b/EdkModulePkg/Bus/Pci/CirrusLogic/Dxe/CirrusLogic5430.h
index 5eba0190f2..79ca7e0293 100644
--- a/EdkModulePkg/Bus/Pci/CirrusLogic/Dxe/CirrusLogic5430.h
+++ b/EdkModulePkg/Bus/Pci/CirrusLogic/Dxe/CirrusLogic5430.h
@@ -29,7 +29,7 @@ Revision History
#define _CIRRUS_LOGIC_5430_H_
-#include <IndustryStandard/Pci22.h>
+#include <IndustryStandard/pci22.h>
//
// Cirrus Logic 5430 PCI Configuration Header values
//
diff --git a/EdkModulePkg/Bus/Pci/IdeBus/Dxe/ComponentName.c b/EdkModulePkg/Bus/Pci/IdeBus/Dxe/ComponentName.c
index 8008527dd1..240a6b0082 100644
--- a/EdkModulePkg/Bus/Pci/IdeBus/Dxe/ComponentName.c
+++ b/EdkModulePkg/Bus/Pci/IdeBus/Dxe/ComponentName.c
@@ -17,7 +17,7 @@ Abstract:
--*/
-#include "IDEBus.h"
+#include "idebus.h"
//
// EFI Component Name Protocol
diff --git a/EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverConfiguration.c b/EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverConfiguration.c
index b8f71fdc8d..5a23a43189 100644
--- a/EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverConfiguration.c
+++ b/EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverConfiguration.c
@@ -17,7 +17,7 @@ Abstract:
--*/
-#include "IDEBus.h"
+#include "idebus.h"
CHAR16 *OptionString[4] = {
L"Enable Primary Master (Y/N)? -->",
diff --git a/EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverDiagnostics.c b/EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverDiagnostics.c
index ce3be14234..d3f2a8e31c 100644
--- a/EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverDiagnostics.c
+++ b/EdkModulePkg/Bus/Pci/IdeBus/Dxe/DriverDiagnostics.c
@@ -17,7 +17,7 @@ Abstract:
--*/
-#include "IDEBus.h"
+#include "idebus.h"
#define IDE_BUS_DIAGNOSTIC_ERROR L"PCI IDE/ATAPI Driver Diagnostics Failed"
diff --git a/EdkModulePkg/Bus/Pci/IdeBus/Dxe/idebus.h b/EdkModulePkg/Bus/Pci/IdeBus/Dxe/idebus.h
index 2e3caaf1b7..428dffa65d 100644
--- a/EdkModulePkg/Bus/Pci/IdeBus/Dxe/idebus.h
+++ b/EdkModulePkg/Bus/Pci/IdeBus/Dxe/idebus.h
@@ -24,7 +24,7 @@ Revision History
#define _IDE_BUS_H
-#include <IndustryStandard/Pci22.h>
+#include <IndustryStandard/pci22.h>
#include "idedata.h"
//
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/ComponentName.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/ComponentName.c
index ba7ec08c4e..b10ee93591 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/ComponentName.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/ComponentName.c
@@ -17,7 +17,7 @@ Abstract:
--*/
-#include "PciBus.h"
+#include "pcibus.h"
//
// EFI Component Name Protocol
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciCommand.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciCommand.c
index 90712338f0..f07c73fd3f 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciCommand.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciCommand.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "Pcibus.h"
+#include "pcibus.h"
EFI_STATUS
PciOperateRegister (
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c
index c24d1b5e59..54a7fe7452 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciDeviceSupport.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "Pcibus.h"
+#include "pcibus.h"
#include "PciDeviceSupport.h"
//
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumerator.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumerator.c
index d3566a1600..384e86ff34 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumerator.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumerator.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "Pcibus.h"
+#include "pcibus.h"
#include "PciEnumerator.h"
#include "PciResourceSupport.h"
#include "PciOptionRomSupport.h"
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumeratorSupport.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumeratorSupport.c
index 2c54897953..80bc7d4daf 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumeratorSupport.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciEnumeratorSupport.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "Pcibus.h"
+#include "pcibus.h"
#include "PciEnumeratorSupport.h"
#include "PciCommand.h"
#include "PciIo.h"
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciHotPlugSupport.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciHotPlugSupport.c
index 4ebf9a7afc..8707487311 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciHotPlugSupport.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciHotPlugSupport.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "Pcibus.h"
+#include "pcibus.h"
#include "PciHotPlugSupport.h"
EFI_PCI_HOT_PLUG_INIT_PROTOCOL *gPciHotPlugInit;
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciIo.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciIo.c
index 4f1737f5af..28fbaca67a 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciIo.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciIo.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "Pcibus.h"
+#include "pcibus.h"
//
// Internal use only
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciOptionRomSupport.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciOptionRomSupport.c
index 324ad62827..5819fd6e37 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciOptionRomSupport.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciOptionRomSupport.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "PciBus.h"
+#include "pcibus.h"
#include "PciResourceSupport.h"
EFI_STATUS
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciPowerManagement.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciPowerManagement.c
index 1760c3946b..f871c8681c 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciPowerManagement.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciPowerManagement.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "Pcibus.h"
+#include "pcibus.h"
EFI_STATUS
ResetPowerManagementFeature (
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciResourceSupport.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciResourceSupport.c
index 8f89e8983a..8919b422a7 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciResourceSupport.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/PciResourceSupport.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "PciBus.h"
+#include "pcibus.h"
#include "PciResourceSupport.h"
#include "PciCommand.h"
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.c b/EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.c
index 16a33010e4..ed56578757 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.c
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.c
@@ -21,7 +21,7 @@ Revision History
--*/
-#include "PciBus.h"
+#include "pcibus.h"
//
// PCI Bus Support Function Prototypes
diff --git a/EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.h b/EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.h
index 170a4e278a..a18d12f3d4 100644
--- a/EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.h
+++ b/EdkModulePkg/Bus/Pci/PciBus/Dxe/pcibus.h
@@ -11,7 +11,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Module Name:
- PciBus.h
+ pcibus.h
Abstract:
@@ -25,7 +25,7 @@ Revision History
#define _EFI_PCI_BUS_H
-#include <IndustryStandard/Pci22.h>
+#include <IndustryStandard/pci22.h>
#include <IndustryStandard/Acpi.h>
#include "ComponentName.h"
diff --git a/EdkModulePkg/Bus/Pci/Uhci/Dxe/uhci.h b/EdkModulePkg/Bus/Pci/Uhci/Dxe/uhci.h
index 93da46c9ca..d6f841bf40 100644
--- a/EdkModulePkg/Bus/Pci/Uhci/Dxe/uhci.h
+++ b/EdkModulePkg/Bus/Pci/Uhci/Dxe/uhci.h
@@ -26,7 +26,7 @@ Revision History
* Universal Host Controller Interface data structures and defines
*/
-#include <IndustryStandard/Pci22.h>
+#include <IndustryStandard/pci22.h>
#define EFI_D_UHCI EFI_D_INFO
diff --git a/EdkModulePkg/Bus/Pci/Undi/RuntimeDxe/Undi32.h b/EdkModulePkg/Bus/Pci/Undi/RuntimeDxe/Undi32.h
index 5e0044398f..73e1151144 100644
--- a/EdkModulePkg/Bus/Pci/Undi/RuntimeDxe/Undi32.h
+++ b/EdkModulePkg/Bus/Pci/Undi/RuntimeDxe/Undi32.h
@@ -29,7 +29,7 @@ Revision History
#include "E100b.h"
-#include <IndustryStandard\pci22.h>
+#include <IndustryStandard/pci22.h>
#define MAX_NIC_INTERFACES 16
diff --git a/EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.c b/EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.c
index 3aa31a812f..866c796925 100644
--- a/EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.c
+++ b/EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.c
@@ -19,7 +19,7 @@ Abstract:
Revision History
--*/
-#include "scsibus.h"
+#include "ScsiBus.h"
EFI_STATUS
EFIAPI
diff --git a/EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.h b/EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.h
index da1fa23bfa..f98187126b 100644
--- a/EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.h
+++ b/EdkModulePkg/Bus/Scsi/ScsiBus/Dxe/ScsiBus.h
@@ -11,7 +11,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Module Name:
- scsibus.h
+ ScsiBus.h
Abstract:
diff --git a/EdkModulePkg/Bus/Scsi/ScsiDisk/Dxe/ScsiDisk.c b/EdkModulePkg/Bus/Scsi/ScsiDisk/Dxe/ScsiDisk.c
index 2c6fd29d37..006cc73bcb 100644
--- a/EdkModulePkg/Bus/Scsi/ScsiDisk/Dxe/ScsiDisk.c
+++ b/EdkModulePkg/Bus/Scsi/ScsiDisk/Dxe/ScsiDisk.c
@@ -17,7 +17,7 @@ Abstract:
--*/
-#include "scsidisk.h"
+#include "ScsiDisk.h"
EFI_STATUS
EFIAPI
diff --git a/EdkModulePkg/Bus/Usb/UsbBot/Dxe/bot.h b/EdkModulePkg/Bus/Usb/UsbBot/Dxe/bot.h
index 575dfbea05..5f9006b5bd 100644
--- a/EdkModulePkg/Bus/Usb/UsbBot/Dxe/bot.h
+++ b/EdkModulePkg/Bus/Usb/UsbBot/Dxe/bot.h
@@ -21,7 +21,7 @@ Abstract:
#define _BOT_H
-#include <IndustryStandard/usb.h>
+#include <IndustryStandard/Usb.h>
#pragma pack(1)
//
diff --git a/EdkModulePkg/Bus/Usb/UsbBus/Dxe/ComponentName.c b/EdkModulePkg/Bus/Usb/UsbBus/Dxe/ComponentName.c
index 347a0003f4..8ecbbb0995 100644
--- a/EdkModulePkg/Bus/Usb/UsbBus/Dxe/ComponentName.c
+++ b/EdkModulePkg/Bus/Usb/UsbBus/Dxe/ComponentName.c
@@ -17,7 +17,7 @@ Abstract:
--*/
-#include "UsbBus.h"
+#include "usbbus.h"
//
// EFI Component Name Functions
diff --git a/EdkModulePkg/Bus/Usb/UsbBus/Dxe/usbbus.h b/EdkModulePkg/Bus/Usb/UsbBus/Dxe/usbbus.h
index b32620342c..036f4dfe50 100644
--- a/EdkModulePkg/Bus/Usb/UsbBus/Dxe/usbbus.h
+++ b/EdkModulePkg/Bus/Usb/UsbBus/Dxe/usbbus.h
@@ -26,9 +26,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#define _EFI_USB_BUS_H
-#include <IndustryStandard/usb.h>
-#include "Hub.h"
-#include "Usbutil.h"
+#include <IndustryStandard/Usb.h>
+#include "hub.h"
+#include "usbutil.h"
//#ifdef EFI_DEBUG
extern UINTN gUSBDebugLevel;
diff --git a/EdkModulePkg/Bus/Usb/UsbCbi/Dxe/cbi.h b/EdkModulePkg/Bus/Usb/UsbCbi/Dxe/cbi.h
index dfbe4d9886..e2a7c9d5af 100644
--- a/EdkModulePkg/Bus/Usb/UsbCbi/Dxe/cbi.h
+++ b/EdkModulePkg/Bus/Usb/UsbCbi/Dxe/cbi.h
@@ -22,7 +22,7 @@ Abstract:
#define _CBI_H
-#include <IndustryStandard/usb.h>
+#include <IndustryStandard/Usb.h>
#define bit(a) (1 << (a))
diff --git a/EdkModulePkg/Bus/Usb/UsbKb/Dxe/efikey.h b/EdkModulePkg/Bus/Usb/UsbKb/Dxe/efikey.h
index bf9f47732d..091dd695a5 100644
--- a/EdkModulePkg/Bus/Usb/UsbKb/Dxe/efikey.h
+++ b/EdkModulePkg/Bus/Usb/UsbKb/Dxe/efikey.h
@@ -22,7 +22,7 @@ Revision History
#define _USB_KB_H
-#include <IndustryStandard/usb.h>
+#include <IndustryStandard/Usb.h>
#define MAX_KEY_ALLOWED 32
diff --git a/EdkModulePkg/Bus/Usb/UsbMassStorage/Dxe/UsbMassStorage.h b/EdkModulePkg/Bus/Usb/UsbMassStorage/Dxe/UsbMassStorage.h
index 4874bb08cc..387c53a72d 100644
--- a/EdkModulePkg/Bus/Usb/UsbMassStorage/Dxe/UsbMassStorage.h
+++ b/EdkModulePkg/Bus/Usb/UsbMassStorage/Dxe/UsbMassStorage.h
@@ -23,7 +23,7 @@ Revision History
#define _USB_FLP_H
-#include <IndustryStandard/usb.h>
+#include <IndustryStandard/Usb.h>
#include "UsbMassStorageData.h"
#define CLASS_MASSTORAGE 8
diff --git a/EdkModulePkg/Bus/Usb/UsbMouse/Dxe/usbmouse.h b/EdkModulePkg/Bus/Usb/UsbMouse/Dxe/usbmouse.h
index 8a7dd753b1..47485bfc08 100644
--- a/EdkModulePkg/Bus/Usb/UsbMouse/Dxe/usbmouse.h
+++ b/EdkModulePkg/Bus/Usb/UsbMouse/Dxe/usbmouse.h
@@ -20,7 +20,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#ifndef _USB_MOUSE_H
#define _USB_MOUSE_H
-#include <IndustryStandard/usb.h>
+#include <IndustryStandard/Usb.h>
#define CLASS_HID 3
#define SUBCLASS_BOOT 1