qlnxr: remove duplicate defines
upper_32_bits() and lower_32_bits() are defined twice in this file.
With the extra conditinal removed on LinuxKPI in 3b1ecc9fa1
they are also included from there already. Use the LinuxKPI version
and remove the two local ones.
Sponsored-by: The FreeBSD Foundation
Reviewed-by: hselasky
MFC-after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D29392
This commit is contained in:
parent
3b1ecc9fa1
commit
5df6f7a840
@ -36,8 +36,6 @@ __FBSDID("$FreeBSD$");
|
||||
#include "qlnxr_roce.h"
|
||||
#include "qlnxr_cm.h"
|
||||
|
||||
#define upper_32_bits(x) (uint32_t)(x >> 32)
|
||||
#define lower_32_bits(x) (uint32_t)(x)
|
||||
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
|
||||
|
||||
#define TYPEPTR_ADDR_SET(type_ptr, field, vaddr) \
|
||||
@ -1365,9 +1363,6 @@ qlnxr_prepare_pbl_tbl(struct qlnxr_dev *dev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define upper_32_bits(x) (uint32_t)(x >> 32)
|
||||
#define lower_32_bits(x) (uint32_t)(x)
|
||||
|
||||
static void
|
||||
qlnxr_populate_pbls(struct qlnxr_dev *dev, struct ib_umem *umem,
|
||||
struct qlnxr_pbl *pbl, struct qlnxr_pbl_info *pbl_info)
|
||||
|
Loading…
Reference in New Issue
Block a user