Fix parameter name in EnableNotification

This commit is contained in:
mailwl 2016-05-31 10:05:31 +03:00
parent eea08f281d
commit e85b22320a
2 changed files with 6 additions and 2 deletions

View file

@ -32,6 +32,10 @@ constexpr u32 CallingPidDesc() {
return 0x20;
}
constexpr u32 TransferHandleDesc() {
return 0x20;
}
constexpr u32 StaticBufferDesc(u32 size, unsigned int buffer_id) {
return 0x2 | (size << 14) | ((buffer_id & 0xF) << 10);
}