3d23c0a436
vtophys() when loading mbufs for transmission and reception. While at it all pointer arithmetic and cast qualifier issues were fixed, mostly related to transmission and reception. MFC after: 1 week Sponsored by: Mellanox Technologies Differential Revision: https://reviews.freebsd.org/D4284
14 lines
419 B
Makefile
14 lines
419 B
Makefile
# $FreeBSD$
|
|
.PATH: ${.CURDIR}/../../ofed/drivers/net/mlx4
|
|
|
|
KMOD = mlxen
|
|
SRCS = device_if.h bus_if.h pci_if.h vnode_if.h
|
|
SRCS += en_cq.c en_main.c en_netdev.c en_port.c en_resources.c
|
|
SRCS += en_rx.c en_tx.c
|
|
SRCS += opt_inet.h opt_inet6.h
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/drivers/net/mlx4
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/include
|
|
CFLAGS+= -I${.CURDIR}/../../compat/linuxkpi/common/include
|
|
|
|
.include <bsd.kmod.mk>
|