diff options
author | Adrian Chadd <adrian@FreeBSD.org> | 2025-01-20 23:39:17 +0000 |
---|---|---|
committer | Adrian Chadd <adrian@FreeBSD.org> | 2025-01-20 23:39:17 +0000 |
commit | 86bfbaf1002c88b5c1a6d3ed261becedb533490b (patch) | |
tree | 0f53d996814dcb2c3674032ff3aa99787f38cdfd | |
parent | 709c18911ad70978d47198556c0fb1c0e703fb68 (diff) |
sys: add MBIM (mobile broadband interface module) interface type.
This is part of the upcoming USB umb(4) work.
Differential Revision: https://reviews.freebsd.org/D48167
Approved by: adrian, zlei
Sponsored by: FreeBSD Foundation
PR: kern/263783
Submitted by: Pierre Pronchery <khorben@defora.org>
-rw-r--r-- | sys/net/if_types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/net/if_types.h b/sys/net/if_types.h index b0692af69308..1d17e5c09813 100644 --- a/sys/net/if_types.h +++ b/sys/net/if_types.h @@ -254,6 +254,7 @@ typedef enum { IFT_PFLOG = 0xf6, /* PF packet filter logging */ IFT_PFSYNC = 0xf7, /* PF packet filter synchronization */ IFT_WIREGUARD = 0xf8, /* WireGuard tunnel */ + IFT_MBIM = 0xf9, /* Mobile Broadband Interface Model */ } ifType; /* |