summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Bus/Usb
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-04-07 02:29:49 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2009-04-07 02:29:49 +0000
commit8a67d804b3b660b233ba58e24fee81c76786001b (patch)
treee1b4b9bc3a694ff7c6e87d194dbe9fc9d07113c8 /MdeModulePkg/Bus/Usb
parent395ed063d9847022bfec1e3827d7752950f73d6e (diff)
downloadedk2-platforms-8a67d804b3b660b233ba58e24fee81c76786001b.tar.xz
return value not follow spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8028 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Bus/Usb')
-rw-r--r--MdeModulePkg/Bus/Usb/UsbKbDxe/EfiKey.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/MdeModulePkg/Bus/Usb/UsbKbDxe/EfiKey.c b/MdeModulePkg/Bus/Usb/UsbKbDxe/EfiKey.c
index e2c86b07b4..7ff7f1ca67 100644
--- a/MdeModulePkg/Bus/Usb/UsbKbDxe/EfiKey.c
+++ b/MdeModulePkg/Bus/Usb/UsbKbDxe/EfiKey.c
@@ -1084,7 +1084,6 @@ USBKeyboardRegisterKeyNotify (
@retval EFI_SUCCESS The notification function was unregistered successfully.
@retval EFI_INVALID_PARAMETER The NotificationHandle is invalid
- @retval EFI_NOT_FOUND Cannot find the matching entry in database.
**/
EFI_STATUS
@@ -1133,6 +1132,9 @@ USBKeyboardUnregisterKeyNotify (
}
}
- return EFI_NOT_FOUND;
+ //
+ // Cannot find the matching entry in database.
+ //
+ return EFI_INVALID_PARAMETER;
}