diff options
author | erictian <erictian@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-03-30 03:33:27 +0000 |
---|---|---|
committer | erictian <erictian@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-03-30 03:33:27 +0000 |
commit | 0ecd7c4a02110ea6c55fc33d1581ab9a54dd152e (patch) | |
tree | 577aec5b53c48bac70c64b3ab03f03d1d2f18b98 /MdeModulePkg/Bus | |
parent | 47bd1c9462b33f8d72e75eac9b611eea6b093e3e (diff) | |
download | edk2-0ecd7c4a02110ea6c55fc33d1581ab9a54dd152e.zip edk2-0ecd7c4a02110ea6c55fc33d1581ab9a54dd152e.tar.gz edk2-0ecd7c4a02110ea6c55fc33d1581ab9a54dd152e.tar.bz2 |
MdeModulePkg/UsbBusDxe:Correct typos in usb debug message
Signed-off-by: erictian
Reviewed-by: rsun3
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13155 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Bus')
-rw-r--r-- | MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c b/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c index f708902..908dab1 100644 --- a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c +++ b/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbEnumer.c @@ -680,7 +680,7 @@ UsbEnumerateNewDev ( }
if (!USB_BIT_IS_SET (PortState.PortStatus, USB_PORT_STAT_CONNECTION)) {
- DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: No device presented at port %d\n", Port));
+ DEBUG ((EFI_D_ERROR, "UsbEnumerateNewDev: No device present at port %d\n", Port));
goto ON_ERROR;
} else if (USB_BIT_IS_SET (PortState.PortStatus, USB_PORT_STAT_SUPER_SPEED)){
Child->Speed = EFI_USB_SPEED_SUPER;
@@ -907,7 +907,7 @@ UsbEnumeratePort ( // Case4:
// Device connected or disconnected normally.
//
- DEBUG ((EFI_D_ERROR, "UsbEnumeratePort: Device Connect/Discount Normally\n", Port));
+ DEBUG ((EFI_D_ERROR, "UsbEnumeratePort: Device Connect/Disconnect Normally\n", Port));
}
//
|