diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2020-06-24 11:17:22 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2020-06-24 11:17:22 +0000 |
commit | b822ff2601ffcafbb511978fafa39322a91acb25 (patch) | |
tree | 01259858baf6493b51011a609107630cde0fd8d6 | |
parent | 4a99c7d6a2415d86cc59c35a970e5edcbb310ea1 (diff) |
get rid of the per device sff lock because we only use the global one.
no functional change
-rw-r--r-- | sys/dev/pci/if_ixl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/if_ixl.c b/sys/dev/pci/if_ixl.c index 2401f09e76c..bdbfd69ed1e 100644 --- a/sys/dev/pci/if_ixl.c +++ b/sys/dev/pci/if_ixl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ixl.c,v 1.49 2020/06/21 05:15:14 jmatthew Exp $ */ +/* $OpenBSD: if_ixl.c,v 1.50 2020/06/24 11:17:21 dlg Exp $ */ /* * Copyright (c) 2013-2015, Intel Corporation @@ -1161,8 +1161,6 @@ struct ixl_softc { struct rwlock sc_cfg_lock; unsigned int sc_dead; - struct rwlock sc_sff_lock; - uint8_t sc_enaddr[ETHER_ADDR_LEN]; }; #define DEVNAME(_sc) ((_sc)->sc_dev.dv_xname) |