diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-02-07 22:02:49 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-02-07 22:02:49 +0000 |
commit | 4d051eb7a84954ee6de556c3dc99924d9c0e8c0d (patch) | |
tree | b09d49c94ffd758c12db7f08d99f76f938bdfe63 /sys/dev/pci/if_bwfm_pci.c | |
parent | 9890183b900bc8e6fbc45993e49c56ddd5a8e812 (diff) |
Move parsing the BCDC header on RX into a protocol specific RX
function so it can be shared with the SDIO attachment driver.
Diffstat (limited to 'sys/dev/pci/if_bwfm_pci.c')
-rw-r--r-- | sys/dev/pci/if_bwfm_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_bwfm_pci.c b/sys/dev/pci/if_bwfm_pci.c index a195ba9beb3..5dab9290431 100644 --- a/sys/dev/pci/if_bwfm_pci.c +++ b/sys/dev/pci/if_bwfm_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bwfm_pci.c,v 1.16 2018/01/11 16:09:19 patrick Exp $ */ +/* $OpenBSD: if_bwfm_pci.c,v 1.17 2018/02/07 22:02:48 patrick Exp $ */ /* * Copyright (c) 2010-2016 Broadcom Corporation * Copyright (c) 2017 Patrick Wildt <patrick@blueri.se> @@ -286,6 +286,7 @@ struct bwfm_bus_ops bwfm_pci_bus_ops = { struct bwfm_proto_ops bwfm_pci_msgbuf_ops = { .proto_query_dcmd = bwfm_pci_msgbuf_query_dcmd, .proto_set_dcmd = bwfm_pci_msgbuf_set_dcmd, + .proto_rx = NULL, }; struct cfattach bwfm_pci_ca = { |