Merge "Fix V1_2::IDevice::getType documentation: was @param instead of @return"

This commit is contained in:
David Gross
2019-08-29 17:44:04 +00:00
committed by Gerrit Code Review
2 changed files with 9 additions and 8 deletions

View File

@@ -479,6 +479,7 @@ b53ac9d61c24efb16a2d63a861cef20680f6d57adb244a03b9778c675550628b android.hardwar
# ABI preserving changes to HALs during Android R # ABI preserving changes to HALs during Android R
b69a7615c508acf5c5201efd1bfa3262167874fc3594e2db5a3ff93addd8ac75 android.hardware.keymaster@4.0::IKeymasterDevice b69a7615c508acf5c5201efd1bfa3262167874fc3594e2db5a3ff93addd8ac75 android.hardware.keymaster@4.0::IKeymasterDevice
ad431c8de51c07934a068e3043d8dd0537ac4d3158627706628b123f42df48dc android.hardware.neuralnetworks@1.0::IPreparedModel ad431c8de51c07934a068e3043d8dd0537ac4d3158627706628b123f42df48dc android.hardware.neuralnetworks@1.0::IPreparedModel
fb382e986c10b8fbb797a8546e8f9ea6d1107bfe6f3fb7e57f6bbbf1f807a906 android.hardware.neuralnetworks@1.2::IDevice
aafcc10cf04ab247e86d4582586c71c6b4c2b8c479241ffa7fe37deb659fc942 android.hardware.neuralnetworks@1.2::IPreparedModel aafcc10cf04ab247e86d4582586c71c6b4c2b8c479241ffa7fe37deb659fc942 android.hardware.neuralnetworks@1.2::IPreparedModel
1a6e2bd289f22931c526b21916910f1d4c436b7acb9556e4243de4ce8e6cc2e4 android.hardware.soundtrigger@2.0::ISoundTriggerHwCallback 1a6e2bd289f22931c526b21916910f1d4c436b7acb9556e4243de4ce8e6cc2e4 android.hardware.soundtrigger@2.0::ISoundTriggerHwCallback
fd65298e1e09e0e3c781ab18305920d757dbe55a3b459ce17814ec5cf6dfee99 android.hardware.wifi@1.0::IWifiP2pIface fd65298e1e09e0e3c781ab18305920d757dbe55a3b459ce17814ec5cf6dfee99 android.hardware.wifi@1.0::IWifiP2pIface

View File

@@ -64,14 +64,14 @@ interface IDevice extends @1.1::IDevice {
* results, the developer could choose an ACCELERATOR type device for ML * results, the developer could choose an ACCELERATOR type device for ML
* workloads, and reserve GPU for graphical rendering. * workloads, and reserve GPU for graphical rendering.
* *
* @param status Error status returned from querying the device type. Must be: * @return status Error status returned from querying the device type. Must be:
* - NONE if the query was successful * - NONE if the query was successful
* - DEVICE_UNAVAILABLE if driver is offline or busy * - DEVICE_UNAVAILABLE if driver is offline or busy
* - GENERAL_FAILURE if the query resulted in an * - GENERAL_FAILURE if the query resulted in an
* unspecified error * unspecified error
* @param type The DeviceType of the device. Please note, this is not a * @return type The DeviceType of the device. Please note, this is not a
* bitfield of DeviceTypes. Each device must only be of a * bitfield of DeviceTypes. Each device must only be of a
* single DeviceType. * single DeviceType.
*/ */
getType() generates (ErrorStatus status, DeviceType type); getType() generates (ErrorStatus status, DeviceType type);