Fix GCC build break.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6569 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8 2008-11-18 03:32:46 +00:00
parent 1731b949f8
commit 563353b71f
1 changed files with 9 additions and 0 deletions

View File

@ -404,6 +404,9 @@ UsbSetFeature (
case USB_TARGET_ENDPOINT:
DevReq.RequestType = USB_DEV_SET_FEATURE_REQ_TYPE_E;
break;
default:
break;
}
//
// Fill device request, see USB1.1 spec
@ -479,6 +482,9 @@ UsbClearFeature (
case USB_TARGET_ENDPOINT:
DevReq.RequestType = USB_DEV_CLEAR_FEATURE_REQ_TYPE_E;
break;
default:
break;
}
//
// Fill device request, see USB1.1 spec
@ -555,6 +561,9 @@ UsbGetStatus (
case USB_TARGET_ENDPOINT:
DevReq.RequestType = USB_DEV_GET_STATUS_REQ_TYPE_E;
break;
default:
break;
}
//
// Fill device request, see USB1.1 spec