diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2007-06-19 07:59:58 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2007-06-19 07:59:58 +0000 |
commit | ef866e0119ad473b081d3902f0f5e2c2acce84eb (patch) | |
tree | 95374e94e327b618e3ed78a329e1e38d56cce879 /sys/dev/sdmmc | |
parent | c0b983d64b1402b9380d16a37c9e8860f590a19b (diff) |
Pass the correct flag to sbt_start() in sbt_start_cmd()
Diffstat (limited to 'sys/dev/sdmmc')
-rw-r--r-- | sys/dev/sdmmc/sbt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sdmmc/sbt.c b/sys/dev/sdmmc/sbt.c index aa8a63ba62c..070d53c5ee8 100644 --- a/sys/dev/sdmmc/sbt.c +++ b/sys/dev/sdmmc/sbt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sbt.c,v 1.8 2007/06/19 07:58:05 uwe Exp $ */ +/* $OpenBSD: sbt.c,v 1.9 2007/06/19 07:59:57 uwe Exp $ */ /* * Copyright (c) 2007 Uwe Stuehler <uwe@openbsd.org> @@ -459,7 +459,7 @@ sbt_start(struct hci_unit *unit, struct ifqueue *q, int xmit) void sbt_start_cmd(struct hci_unit *unit) { - sbt_start(unit, &unit->hci_cmdq, BTF_XMIT_ACL); + sbt_start(unit, &unit->hci_cmdq, BTF_XMIT_CMD); } void |