mirror of https://github.com/acidanthera/audk.git
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:
parent
1731b949f8
commit
563353b71f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue