Move location of __rte_aligned(a) to new conventional location. The new
placement between {struct,union} and the tag allows the desired
alignment to be imparted on the type regardless of the toolchain being
used for both C and C++. Additionally, it avoids confusion by Doxygen
when generating documentation.Signed-off-by: Tyler Retzlaff <[email protected]> Acked-by: Morten Brørup <[email protected]> --- drivers/crypto/octeontx/otx_cryptodev_hw_access.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/octeontx/otx_cryptodev_hw_access.h b/drivers/crypto/octeontx/otx_cryptodev_hw_access.h index 4647d56..6e2afde 100644 --- a/drivers/crypto/octeontx/otx_cryptodev_hw_access.h +++ b/drivers/crypto/octeontx/otx_cryptodev_hw_access.h @@ -77,7 +77,7 @@ struct command_queue { /** * CPT VF device structure */ -struct cpt_vf { +struct __rte_cache_aligned cpt_vf { /** CPT instance */ struct cpt_instance instance; /** Register start address */ @@ -111,7 +111,7 @@ struct cpt_vf { /** Device name */ char dev_name[32]; -} __rte_cache_aligned; +}; /* * CPT Registers map for 81xx -- 1.8.3.1

