aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincenzo Maffione <vmaffione@FreeBSD.org>2021-04-11 21:06:43 +0000
committerMark Johnston <markj@FreeBSD.org>2021-04-19 18:17:08 +0000
commit89a4cc5c8a3d916c679436a332bc16f80b073aa6 (patch)
treebd23baed2069491b2fffe062c79b9a82843fd2d5
parent5b8039d5ed3e390f90a7bf77dd558134a95bc1c1 (diff)
netmap: don't use linux type struct device *
Such type cannot be used in code that is in common between FreeBSD and Linux. Use the FreeBSD type instead. MFC after: 3 days Reported by: markj Differential Revision: https://reviews.freebsd.org/D29677 (cherry picked from commit 70275a6735df8a514f48be77418491f2f8dba817)
-rw-r--r--sys/dev/netmap/netmap_mem2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/netmap/netmap_mem2.c b/sys/dev/netmap/netmap_mem2.c
index 7d798ee5a7fa..9f0bc2f17e53 100644
--- a/sys/dev/netmap/netmap_mem2.c
+++ b/sys/dev/netmap/netmap_mem2.c
@@ -308,7 +308,7 @@ netmap_mem_rings_delete(struct netmap_adapter *na)
static int netmap_mem_map(struct netmap_obj_pool *, struct netmap_adapter *);
static int netmap_mem_unmap(struct netmap_obj_pool *, struct netmap_adapter *);
-static int nm_mem_assign_group(struct netmap_mem_d *, struct device *);
+static int nm_mem_assign_group(struct netmap_mem_d *, bus_dma_tag_t);
static void nm_mem_release_id(struct netmap_mem_d *);
nm_memid_t
@@ -725,7 +725,7 @@ netmap_mem_find(nm_memid_t id)
}
static int
-nm_mem_assign_group(struct netmap_mem_d *nmd, struct device *dev)
+nm_mem_assign_group(struct netmap_mem_d *nmd, bus_dma_tag_t dev)
{
int err = 0, id;
id = nm_iommu_group_id(dev);