07ebd5dd98
swap*_*_le() functions are not used anywhere and besides there are rte
alternatives already present.
Fixes: 1173fca25a
("ena: add polling-mode driver")
Cc: stable@dpdk.org
Signed-off-by: Stanislaw Kardach <kda@semihalf.com>
Reviewed-by: Michal Krawczyk <mk@semihalf.com>
Reviewed-by: Igor Chauskin <igorch@amazon.com>
Reviewed-by: Shay Agroskin <shayagr@amazon.com>
20 lines
463 B
C
20 lines
463 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) 2015-2019 Amazon.com, Inc. or its affiliates.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __ENA_PLATFORM_H__
|
|
#define __ENA_PLATFORM_H__
|
|
|
|
#define ena_assert_msg(cond, msg) \
|
|
do { \
|
|
if (unlikely(!(cond))) { \
|
|
rte_log(RTE_LOG_ERR, ena_logtype_driver, \
|
|
"Assert failed on %s:%s:%d: ", \
|
|
__FILE__, __func__, __LINE__); \
|
|
rte_panic(msg); \
|
|
} \
|
|
} while (0)
|
|
|
|
#endif /* __ENA_PLATFORM_H__ */
|