diff --git a/configure.ac b/configure.ac index 27938cfb9c..94b4c36309 100644 --- a/configure.ac +++ b/configure.ac @@ -3118,7 +3118,7 @@ AS_IF([test "x$with_cryptoauthlib" != "xno"], [ CPPFLAGS="$saved_CPPFLAGS" CFLAGS="$saved_CFLAGS" AC_MSG_RESULT([no - compilation failed]) - AC_MSG_ERROR([CryptoAuthLib found but test compilation failed. Check config.log for details.]) + AC_MSG_ERROR([CryptoAuthLib found but compilation check failed. Check config.log for details.]) ]) ], [ AC_MSG_RESULT([no - library not found]) diff --git a/wolfcrypt/src/port/atmel/atmel.c b/wolfcrypt/src/port/atmel/atmel.c index 7565b3b2ae..7536250d9b 100644 --- a/wolfcrypt/src/port/atmel/atmel.c +++ b/wolfcrypt/src/port/atmel/atmel.c @@ -228,15 +228,15 @@ which is of 8 byte typedef struct { - uint8_t element_CKA; //!< contains class, key_type & Algorithm mode - uint16_t property; //!< properties of the element - uint8_t usage_key; //!< usage key - uint8_t write_key; //!< write key - uint8_t read_key; //!< read key - uint8_t permission; //!< permission of the element usage|write|read| - //delete perm - uint8_t byte7_settings; //!< Byte 7 attributes use_count|exportable| - // lockable|access_limit + uint8_t element_CKA; /* contains class, key_type & Algorithm mode */ + uint16_t property; /* properties of the element */ + uint8_t usage_key; /* usage key */ + uint8_t write_key; /* write key */ + uint8_t read_key; /* read key */ + uint8_t permission; /* permission of the element usage|write|read| + delete perm */ + uint8_t byte7_settings; /* Byte 7 attributes use_count|exportable| + lockable|access_limit */ } ATCA_PACKED ta_element_attributes_t; See Shared Data Element Attributes in the programming specifications