commit | 5d404b4c52ae5928b633493a3c3e6c6a8170b902 | [log] [tgz] |
---|---|---|
author | Sarah Chin <sarahchin@google.com> | Sun Nov 20 23:46:38 2022 -0800 |
committer | Sarah Chin <sarahchin@google.com> | Tue Nov 22 23:30:45 2022 +0000 |
tree | 14dcc4b981fc496aa72ec38cb23d6cb4cd708aa4 | |
parent | e0bb88179ac014922229828d9009520f78aa6a58 [diff] [blame] |
Change NrQos qfi from byte to int Deprecate byte qfi and replace with int qosFlowIdentifier Test: build Bug: 247072632 Change-Id: I38cb276c7d0f0d4fd90d393351e44e4fcf162ae6
diff --git a/radio/aidl/compat/libradiocompat/data/structs.cpp b/radio/aidl/compat/libradiocompat/data/structs.cpp index cc6dcbc..22cde6b 100644 --- a/radio/aidl/compat/libradiocompat/data/structs.cpp +++ b/radio/aidl/compat/libradiocompat/data/structs.cpp
@@ -136,7 +136,7 @@ .fiveQi = qos.fiveQi, .downlink = toAidl(qos.downlink), .uplink = toAidl(qos.uplink), - .qfi = static_cast<int8_t>(qos.qfi), + .qosFlowIdentifier = static_cast<int8_t>(qos.qfi), .averagingWindowMs = qos.averagingWindowMs, }; }