git: 70275a6735df - main - netmap: don't use linux type struct device *
Vincenzo Maffione
vmaffione at FreeBSD.org
Sun Apr 11 21:13:07 UTC 2021
The branch main has been updated by vmaffione:
URL: https://cgit.FreeBSD.org/src/commit/?id=70275a6735df8a514f48be77418491f2f8dba817
commit 70275a6735df8a514f48be77418491f2f8dba817
Author: Vincenzo Maffione <vmaffione at FreeBSD.org>
AuthorDate: 2021-04-11 21:06:43 +0000
Commit: Vincenzo Maffione <vmaffione at FreeBSD.org>
CommitDate: 2021-04-11 21:13:01 +0000
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
---
sys/dev/netmap/netmap_mem2.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/netmap/netmap_mem2.c b/sys/dev/netmap/netmap_mem2.c
index 5edfc38e108d..e6c83efe9ea9 100644
--- a/sys/dev/netmap/netmap_mem2.c
+++ b/sys/dev/netmap/netmap_mem2.c
@@ -312,7 +312,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_check_group(struct netmap_mem_d *, struct device *);
+static int nm_mem_check_group(struct netmap_mem_d *, bus_dma_tag_t);
static void nm_mem_release_id(struct netmap_mem_d *);
nm_memid_t
@@ -730,7 +730,7 @@ netmap_mem_find(nm_memid_t id)
}
static int
-nm_mem_check_group(struct netmap_mem_d *nmd, struct device *dev)
+nm_mem_check_group(struct netmap_mem_d *nmd, bus_dma_tag_t dev)
{
int err = 0, id;
More information about the dev-commits-src-main
mailing list