diff options
author | dfr <dfr@FreeBSD.org> | 2004-07-20 08:58:27 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2004-07-20 08:58:27 +0000 |
commit | b303cee224e1bf851b74a8a74ce99f959b14e989 (patch) | |
tree | 21c14b519f9041eedd1419031953d6b2772e7ba5 /sys | |
parent | c05d3eafaeebeec423290a75f4ba286dc61eccd5 (diff) | |
download | FreeBSD-src-b303cee224e1bf851b74a8a74ce99f959b14e989.zip FreeBSD-src-b303cee224e1bf851b74a8a74ce99f959b14e989.tar.gz |
Temporary fix for interoperability with Windows and OS X. A more complete
fix will follow when its ready.
Submitted by: simokawa
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/firewire/if_fwip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/firewire/if_fwip.c b/sys/dev/firewire/if_fwip.c index 3ce186c..874e3ec 100644 --- a/sys/dev/firewire/if_fwip.c +++ b/sys/dev/firewire/if_fwip.c @@ -91,7 +91,7 @@ static void fwip_stream_input (struct fw_xferq *); static void fwip_unicast_input(struct fw_xfer *); static int fwipdebug = 0; -static int broadcast_channel = 31; /* XXX */ +static int broadcast_channel = 0xc0 | 0x1f; /* tag | channel(XXX) */ static int tx_speed = 2; static int rx_queue_len = FWMAXQUEUE; |