diff options
author | 2017-05-31 08:33:11 +0000 | |
---|---|---|
committer | 2017-05-31 08:33:11 +0000 | |
commit | 1371b9c2d0848854aaf49dfc81df32359af2d0f0 (patch) | |
tree | d1844d8d4924b46f5910cc7fe4ae379735b05d15 | |
parent | add a tiny, to be improved, man page for utf8 encoding. (diff) | |
download | wireguard-openbsd-1371b9c2d0848854aaf49dfc81df32359af2d0f0.tar.xz wireguard-openbsd-1371b9c2d0848854aaf49dfc81df32359af2d0f0.zip |
Add missing function prototype for iwm_rx_bmiss().
-rw-r--r-- | sys/dev/pci/if_iwm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_iwm.c b/sys/dev/pci/if_iwm.c index 5f79097cb0b..fc37a560391 100644 --- a/sys/dev/pci/if_iwm.c +++ b/sys/dev/pci/if_iwm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwm.c,v 1.185 2017/05/31 08:14:52 stsp Exp $ */ +/* $OpenBSD: if_iwm.c,v 1.186 2017/05/31 08:33:11 stsp Exp $ */ /* * Copyright (c) 2014, 2016 genua gmbh <info@genua.de> @@ -368,6 +368,8 @@ void iwm_rx_tx_cmd_single(struct iwm_softc *, struct iwm_rx_packet *, struct iwm_node *); void iwm_rx_tx_cmd(struct iwm_softc *, struct iwm_rx_packet *, struct iwm_rx_data *); +void iwm_rx_bmiss(struct iwm_softc *, struct iwm_rx_packet *, + struct iwm_rx_data *); int iwm_binding_cmd(struct iwm_softc *, struct iwm_node *, uint32_t); void iwm_phy_ctxt_cmd_hdr(struct iwm_softc *, struct iwm_phy_ctxt *, struct iwm_phy_context_cmd *, uint32_t, uint32_t); |