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, master has been updated via e01d879bd344f89d25568d93531d457e87e80f6f (commit) from b35abec0dbb6fbbe747e1c66223d92fc921279bb (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 e01d879bd344f89d25568d93531d457e87e80f6f Author: Xuelin Shi forrest.shi@linaro.org Date: Mon Oct 24 15:02:19 2016 +0800
linux-generic: fix ISO C compiling issue with -Werror=pedantic
ISO C does not allow extra ‘;’ outside of a function.
Signed-off-by: Xuelin Shi forrest.shi@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/platform/linux-generic/include/odp/api/plat/atomic_types.h b/platform/linux-generic/include/odp/api/plat/atomic_types.h index 3bb2bbd..33a0565 100644 --- a/platform/linux-generic/include/odp/api/plat/atomic_types.h +++ b/platform/linux-generic/include/odp/api/plat/atomic_types.h @@ -32,7 +32,7 @@ struct odp_atomic_u64_s { * data types. We use a spin lock to ensure atomicity. */ char lock; /**< Spin lock (if needed) used to ensure atomic access */ #endif -} ODP_ALIGNED(sizeof(uint64_t)); /* Enforce alignement! */; +} ODP_ALIGNED(sizeof(uint64_t)); /* Enforce alignement! */
/** * @internal @@ -40,7 +40,7 @@ struct odp_atomic_u64_s { */ struct odp_atomic_u32_s { uint32_t v; /**< Actual storage for the atomic variable */ -} ODP_ALIGNED(sizeof(uint32_t)); /* Enforce alignement! */; +} ODP_ALIGNED(sizeof(uint32_t)); /* Enforce alignement! */
#if __GCC_ATOMIC_LLONG_LOCK_FREE < 2
-----------------------------------------------------------------------
Summary of changes: platform/linux-generic/include/odp/api/plat/atomic_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive