]> git.droids-corp.org - dpdk.git/blobdiff - drivers/crypto/null/null_crypto_pmd_private.h
crypto/openssl: fix indentation in guide
[dpdk.git] / drivers / crypto / null / null_crypto_pmd_private.h
index 2a4c739c5f8053398dfc07ff7dbfb19cad3f516f..acebc9736023913fc55958202e4aef0f99f99930 100644 (file)
 
 #define NULL_CRYPTO_LOG_ERR(fmt, args...) \
        RTE_LOG(ERR, CRYPTODEV, "[%s] %s() line %u: " fmt "\n",  \
-                       CRYPTODEV_NAME_NULL_PMD, \
+                       RTE_STR(CRYPTODEV_NAME_NULL_PMD), \
                        __func__, __LINE__, ## args)
 
 #ifdef RTE_LIBRTE_NULL_CRYPTO_DEBUG
 #define NULL_CRYPTO_LOG_INFO(fmt, args...) \
        RTE_LOG(INFO, CRYPTODEV, "[%s] %s() line %u: " fmt "\n", \
-                       CRYPTODEV_NAME_NULL_PMD, \
+                       RTE_STR(CRYPTODEV_NAME_NULL_PMD), \
                        __func__, __LINE__, ## args)
 
 #define NULL_CRYPTO_LOG_DBG(fmt, args...) \
        RTE_LOG(DEBUG, CRYPTODEV, "[%s] %s() line %u: " fmt "\n", \
-                       CRYPTODEV_NAME_NULL_PMD, \
+                       RTE_STR(CRYPTODEV_NAME_NULL_PMD), \
                        __func__, __LINE__, ## args)
 #else
 #define NULL_CRYPTO_LOG_INFO(fmt, args...)