mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 15:26:43 +01:00
- Fix compilation after r285909 with USB_DEBUG defined.
- Regenerate usb.conf.
This commit is contained in:
parent
d75accb539
commit
891c57d8a9
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285913
@ -5433,6 +5433,15 @@ nomatch 32 {
|
||||
action "kldload -n umodem";
|
||||
};
|
||||
|
||||
nomatch 32 {
|
||||
match "bus" "uhub[0-9]+";
|
||||
match "mode" "host";
|
||||
match "intclass" "0x02";
|
||||
match "intsubclass" "0x02";
|
||||
match "intprotocol" "0xff";
|
||||
action "kldload -n if_urndis";
|
||||
};
|
||||
|
||||
nomatch 32 {
|
||||
match "bus" "uhub[0-9]+";
|
||||
match "mode" "host";
|
||||
@ -5576,5 +5585,5 @@ nomatch 32 {
|
||||
action "kldload -n umass";
|
||||
};
|
||||
|
||||
# 2687 USB entries processed
|
||||
# 2688 USB entries processed
|
||||
|
||||
|
@ -735,13 +735,13 @@ urndis_ctrl_query(struct urndis_softc *sc, uint32_t oid,
|
||||
|
||||
DPRINTF("type %u len %u rid %u oid 0x%x "
|
||||
"infobuflen %u infobufoffset %u devicevchdl %u\n",
|
||||
le32toh(msg.rm_type),
|
||||
le32toh(msg.rm_len),
|
||||
le32toh(msg.rm_rid),
|
||||
le32toh(msg.rm_oid),
|
||||
le32toh(msg.rm_infobuflen),
|
||||
le32toh(msg.rm_infobufoffset),
|
||||
le32toh(msg.rm_devicevchdl));
|
||||
le32toh(msg->rm_type),
|
||||
le32toh(msg->rm_len),
|
||||
le32toh(msg->rm_rid),
|
||||
le32toh(msg->rm_oid),
|
||||
le32toh(msg->rm_infobuflen),
|
||||
le32toh(msg->rm_infobufoffset),
|
||||
le32toh(msg->rm_devicevchdl));
|
||||
|
||||
rval = urndis_ctrl_send(sc, msg, len);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user