summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorPatrick Wildt <patrick@cvs.openbsd.org>2021-02-26 00:02:08 +0000
committerPatrick Wildt <patrick@cvs.openbsd.org>2021-02-26 00:02:08 +0000
commitec57b1d75264f428bf6a9494c1f08df330116e2f (patch)
tree02cdc47c182c538544dd2d8149d771920ce22460 /sys/dev
parent1737041ec89828c0c0c7356faa85f5d33fbc373c (diff)
Fix prio2fifo mapping table.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_bwfm_pci.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/pci/if_bwfm_pci.c b/sys/dev/pci/if_bwfm_pci.c
index 079b984a2fd..557ace93f0b 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.43 2021/02/25 23:59:54 patrick Exp $ */
+/* $OpenBSD: if_bwfm_pci.c,v 1.44 2021/02/26 00:02:07 patrick Exp $ */
/*
* Copyright (c) 2010-2016 Broadcom Corporation
* Copyright (c) 2017 Patrick Wildt <patrick@blueri.se>
@@ -1554,10 +1554,10 @@ bwfm_pci_buscore_activate(struct bwfm_softc *bwfm, uint32_t rstvec)
}
static int bwfm_pci_prio2fifo[8] = {
- 1, /* best effort */
- 0, /* IPTOS_PREC_IMMEDIATE */
- 0, /* IPTOS_PREC_PRIORITY */
- 1, /* IPTOS_PREC_FLASH */
+ 0, /* best effort */
+ 1, /* IPTOS_PREC_IMMEDIATE */
+ 1, /* IPTOS_PREC_PRIORITY */
+ 0, /* IPTOS_PREC_FLASH */
2, /* IPTOS_PREC_FLASHOVERRIDE */
2, /* IPTOS_PREC_CRITIC_ECP */
3, /* IPTOS_PREC_INTERNETCONTROL */