numam-dpdk/drivers/net/ena/ena_platform.h
Maciej Bielski 702928afeb net/ena: change license clause to SPDX tags
Signed-off-by: Maciej Bielski <mba@semihalf.com>
Acked-by: Michal Krawczyk <mk@semihalf.com>
2019-10-07 15:00:56 +02:00

32 lines
652 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 swap16_to_le(x) (x)
#define swap32_to_le(x) (x)
#define swap64_to_le(x) (x)
#define swap16_from_le(x) (x)
#define swap32_from_le(x) (x)
#define swap64_from_le(x) (x)
#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__ */