crypto/mrvl: fix enabling debug logs

Using non-existent configuration option for enabling debug
messages will actually never enable them.

Fixes: 8a61c83af2 ("crypto/mrvl: add mrvl crypto driver")

Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
This commit is contained in:
Tomasz Duszynski 2017-10-17 09:17:47 +02:00 committed by Pablo de Lara
parent 238fba5b97
commit 4816fb37ce

View File

@ -43,7 +43,7 @@
RTE_STR(CRYPTODEV_NAME_MRVL_PMD), \
__func__, __LINE__, ## args)
#ifdef RTE_LIBRTE_MRVL_CRYPTO_DEBUG
#ifdef RTE_LIBRTE_PMD_MRVL_CRYPTO_DEBUG
#define MRVL_CRYPTO_LOG_INFO(fmt, args...) \
RTE_LOG(INFO, CRYPTODEV, "[%s] %s() line %u: " fmt "\n", \
RTE_STR(CRYPTODEV_NAME_MRVL_PMD), \