This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, api-next has been updated
via 4f97e500a097928e308a415c32a88465adc5f5cc (commit)
via 2ea71a57ae4b6122e3e74782aeea2846a757cb14 (commit)
from 8b30e228ba2c303b3c69ffa4fbb9f138d2523d9a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4f97e500a097928e308a415c32a88465adc5f5cc
Author: Bill Fischofer <bill.fischofer(a)linaro.org>
Date: Mon Jun 5 22:22:19 2017 -0500
api: crypto: correct documentation typos
Correct odp_crypto_auth_capa() to odp_crypto_auth_capability() in
several places in the spec doxygen.
Signed-off-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Reviewed-by: Yi He <yi.he(a)linaro.org>
Reviewed-by: Petri Savolainen <petri.savolainen(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/include/odp/api/spec/crypto.h b/include/odp/api/spec/crypto.h
index c47d3149..470cba05 100644
--- a/include/odp/api/spec/crypto.h
+++ b/include/odp/api/spec/crypto.h
@@ -296,13 +296,13 @@ typedef struct odp_crypto_session_param_t {
/** Authentication key
*
- * Use odp_crypto_auth_capa() for supported key lengths.
+ * Use odp_crypto_auth_capability() for supported key lengths.
*/
odp_crypto_key_t auth_key;
/** Authentication digest length in bytes
*
- * Use odp_crypto_auth_capa() for supported digest lengths.
+ * Use odp_crypto_auth_capability() for supported digest lengths.
*/
uint32_t auth_digest_len;
@@ -377,7 +377,7 @@ typedef struct odp_crypto_op_param_t {
/** Pointer to ADD */
uint8_t *ptr;
- /** AAD length in bytes. Use odp_crypto_auth_capa() for
+ /** AAD length in bytes. Use odp_crypto_auth_capability() for
* supported AAD lengths. */
uint32_t length;
} aad;
commit 2ea71a57ae4b6122e3e74782aeea2846a757cb14
Author: Bill Fischofer <bill.fischofer(a)linaro.org>
Date: Fri Jun 2 16:24:49 2017 -0500
linux-generic: time: add additional doxygen doc for time type
Latest doxygen requires all items to be documented so add doxygen for
enclosing union around variant time types.
Signed-off-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Reviewed-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/include/odp/api/plat/time_types.h b/platform/linux-generic/include/odp/api/plat/time_types.h
index 71e354e6..e7111c8c 100644
--- a/platform/linux-generic/include/odp/api/plat/time_types.h
+++ b/platform/linux-generic/include/odp/api/plat/time_types.h
@@ -26,6 +26,7 @@ extern "C" {
* implementations.
*/
typedef struct odp_time_t {
+ /** @internal Variant mappings for time type */
union {
/** @internal Used with generic 64 bit operations */
uint64_t u64;
-----------------------------------------------------------------------
Summary of changes:
include/odp/api/spec/crypto.h | 6 +++---
platform/linux-generic/include/odp/api/plat/time_types.h | 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, next has been updated
via 0f7275809ee677ee8821c11d007dc3b5a6eeb6fb (commit)
via f838c33c9e93dbbe886b6640635199c5ef72d9e3 (commit)
from f31c9c83db09063f5bd52cf7b82add51ce65ffd6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0f7275809ee677ee8821c11d007dc3b5a6eeb6fb
Author: Bill Fischofer <bill.fischofer(a)linaro.org>
Date: Mon Jun 5 22:22:19 2017 -0500
api: crypto: correct documentation typos
Correct odp_crypto_auth_capa() to odp_crypto_auth_capability() in
several places in the spec doxygen.
Signed-off-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Reviewed-by: Yi He <yi.he(a)linaro.org>
Reviewed-by: Petri Savolainen <petri.savolainen(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/include/odp/api/spec/crypto.h b/include/odp/api/spec/crypto.h
index c47d3149..470cba05 100644
--- a/include/odp/api/spec/crypto.h
+++ b/include/odp/api/spec/crypto.h
@@ -296,13 +296,13 @@ typedef struct odp_crypto_session_param_t {
/** Authentication key
*
- * Use odp_crypto_auth_capa() for supported key lengths.
+ * Use odp_crypto_auth_capability() for supported key lengths.
*/
odp_crypto_key_t auth_key;
/** Authentication digest length in bytes
*
- * Use odp_crypto_auth_capa() for supported digest lengths.
+ * Use odp_crypto_auth_capability() for supported digest lengths.
*/
uint32_t auth_digest_len;
@@ -377,7 +377,7 @@ typedef struct odp_crypto_op_param_t {
/** Pointer to ADD */
uint8_t *ptr;
- /** AAD length in bytes. Use odp_crypto_auth_capa() for
+ /** AAD length in bytes. Use odp_crypto_auth_capability() for
* supported AAD lengths. */
uint32_t length;
} aad;
commit f838c33c9e93dbbe886b6640635199c5ef72d9e3
Author: Bill Fischofer <bill.fischofer(a)linaro.org>
Date: Fri Jun 2 16:24:49 2017 -0500
linux-generic: time: add additional doxygen doc for time type
Latest doxygen requires all items to be documented so add doxygen for
enclosing union around variant time types.
Signed-off-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Reviewed-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/platform/linux-generic/include/odp/api/plat/time_types.h b/platform/linux-generic/include/odp/api/plat/time_types.h
index 71e354e6..e7111c8c 100644
--- a/platform/linux-generic/include/odp/api/plat/time_types.h
+++ b/platform/linux-generic/include/odp/api/plat/time_types.h
@@ -26,6 +26,7 @@ extern "C" {
* implementations.
*/
typedef struct odp_time_t {
+ /** @internal Variant mappings for time type */
union {
/** @internal Used with generic 64 bit operations */
uint64_t u64;
-----------------------------------------------------------------------
Summary of changes:
include/odp/api/spec/crypto.h | 6 +++---
platform/linux-generic/include/odp/api/plat/time_types.h | 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
hooks/post-receive
--