Remove stale (unused) unit variables from if_tun and if_tap softc's.

This commit is contained in:
rwatson 2004-03-13 05:51:06 +00:00
parent b39582afd3
commit 8a06745b20
2 changed files with 0 additions and 3 deletions

View File

@ -44,8 +44,6 @@
struct tap_softc {
struct arpcom arpcom; /* ethernet common data */
#define tap_if arpcom.ac_if
struct resource *tap_unit; /* unit */
u_short tap_flags; /* misc flags */
#define TAP_OPEN (1 << 0)
#define TAP_INITED (1 << 1)

View File

@ -57,7 +57,6 @@
struct tun_softc {
TAILQ_ENTRY(tun_softc) tun_list;
int tun_unit;
dev_t tun_dev;
u_short tun_flags; /* misc flags */
#define TUN_OPEN 0x0001