diff options
author | simokawa <simokawa@FreeBSD.org> | 2007-03-16 05:17:23 +0000 |
---|---|---|
committer | simokawa <simokawa@FreeBSD.org> | 2007-03-16 05:17:23 +0000 |
commit | a59c4504d1cedb428c000359fbb3dbcc273c651c (patch) | |
tree | 5c61b6f691b309ca323c299ac7d46004065b2ddd /sys/dev/firewire | |
parent | 7796b5037d11a16610b9d0aa1f5317ee5540c894 (diff) | |
download | FreeBSD-src-a59c4504d1cedb428c000359fbb3dbcc273c651c.zip FreeBSD-src-a59c4504d1cedb428c000359fbb3dbcc273c651c.tar.gz |
Remove retry_count.
Diffstat (limited to 'sys/dev/firewire')
-rw-r--r-- | sys/dev/firewire/firewire.c | 1 | ||||
-rw-r--r-- | sys/dev/firewire/firewirereg.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/sys/dev/firewire/firewire.c b/sys/dev/firewire/firewire.c index cb37b28..aaa69b6 100644 --- a/sys/dev/firewire/firewire.c +++ b/sys/dev/firewire/firewire.c @@ -1612,7 +1612,6 @@ nextaddr: fw_bus_explore(fc); return; errnode: - fc->retry_count++; if (fc->ongodev != NULL) { fc->ongodev->status = FWDEVINVAL; /* Invalidate ROM */ diff --git a/sys/dev/firewire/firewirereg.h b/sys/dev/firewire/firewirereg.h index 0e037cc..ce63115 100644 --- a/sys/dev/firewire/firewirereg.h +++ b/sys/dev/firewire/firewirereg.h @@ -110,9 +110,7 @@ struct firewire_comm{ u_int irm; u_int max_node; u_int max_hop; - u_int max_asyretry; #define FWPHYASYST (1 << 0) - u_int retry_count; uint32_t ongobus:10, ongonode:6, ongoaddr:16; |