Rename *lldbg to *llerr

This commit is contained in:
Gregory Nutt
2016-06-11 14:55:27 -06:00
parent 86b79b33cf
commit e99301d7c2
646 changed files with 2688 additions and 2688 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ int up_cryptoinitialize(void)
res = crypto_test();
if (res)
{
cryptlldbg("crypto test failed\n");
cryptllerr("crypto test failed\n");
}
else
{
+2 -2
View File
@@ -86,7 +86,7 @@ static int do_test_aes(FAR struct cipher_testvec *test, int mode, int encrypt)
#define AES_CYPHER_TEST_ENCRYPT(mode, mode_str, count, template) \
for (i = 0; i < count; i++) { \
if (do_test_aes(template + i, mode, CYPHER_ENCRYPT)) { \
cryptlldbg("Failed " mode_str " encrypt test #%i\n", i); \
cryptllerr("Failed " mode_str " encrypt test #%i\n", i); \
return -1; \
} \
}
@@ -94,7 +94,7 @@ static int do_test_aes(FAR struct cipher_testvec *test, int mode, int encrypt)
#define AES_CYPHER_TEST_DECRYPT(mode, mode_str, count, template) \
for (i = 0; i < count; i++) { \
if (do_test_aes(template + i, mode, CYPHER_DECRYPT)) { \
cryptlldbg("Failed " mode_str " decrypt test #%i\n", i); \
cryptllerr("Failed " mode_str " decrypt test #%i\n", i); \
return -1; \
} \
}