diff options
author | David Gross <dgross@google.com> | 2019-08-29 11:14:21 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-08-29 11:14:21 -0700 |
commit | c9981f95920af99f4c9b7eb2bb5e80212da7d54f (patch) | |
tree | b4cad6f29e269a98f3eef9beefd5b22cd6f497c5 /neuralnetworks | |
parent | 52da1b820c52ebb9c843e143088ad38cc1bf5f44 (diff) | |
parent | 15b826ad6a694b2f47835b9ebdc0c84ff91380c9 (diff) | |
download | platform_hardware_interfaces-c9981f95920af99f4c9b7eb2bb5e80212da7d54f.tar.gz platform_hardware_interfaces-c9981f95920af99f4c9b7eb2bb5e80212da7d54f.tar.bz2 platform_hardware_interfaces-c9981f95920af99f4c9b7eb2bb5e80212da7d54f.zip |
Merge "Fix V1_2::IDevice::getType documentation: was @param instead of @return"
am: 15b826ad6a
Change-Id: I81b920f6c0edb6f1709af8d8b609e21d64e5755e
Diffstat (limited to 'neuralnetworks')
-rw-r--r-- | neuralnetworks/1.2/IDevice.hal | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/neuralnetworks/1.2/IDevice.hal b/neuralnetworks/1.2/IDevice.hal index d83f9e6758..ff20c12867 100644 --- a/neuralnetworks/1.2/IDevice.hal +++ b/neuralnetworks/1.2/IDevice.hal @@ -64,14 +64,14 @@ interface IDevice extends @1.1::IDevice { * results, the developer could choose an ACCELERATOR type device for ML * workloads, and reserve GPU for graphical rendering. * - * @param status Error status returned from querying the device type. Must be: - * - NONE if the query was successful - * - DEVICE_UNAVAILABLE if driver is offline or busy - * - GENERAL_FAILURE if the query resulted in an - * unspecified error - * @param type The DeviceType of the device. Please note, this is not a - * bitfield of DeviceTypes. Each device must only be of a - * single DeviceType. + * @return status Error status returned from querying the device type. Must be: + * - NONE if the query was successful + * - DEVICE_UNAVAILABLE if driver is offline or busy + * - GENERAL_FAILURE if the query resulted in an + * unspecified error + * @return type The DeviceType of the device. Please note, this is not a + * bitfield of DeviceTypes. Each device must only be of a + * single DeviceType. */ getType() generates (ErrorStatus status, DeviceType type); |