Commit f97af064 authored by Ben Collins's avatar Ben Collins

[IEEE1394]: Fix highlevel reset, which was using the wrong list to iterate.

parent 755fa12b
...@@ -448,7 +448,7 @@ void highlevel_host_reset(struct hpsb_host *host) ...@@ -448,7 +448,7 @@ void highlevel_host_reset(struct hpsb_host *host)
struct hpsb_highlevel *hl; struct hpsb_highlevel *hl;
read_lock(&hl_irqs_lock); read_lock(&hl_irqs_lock);
list_for_each_entry(hl, &hl_irqs, hl_list) { list_for_each_entry(hl, &hl_irqs, irq_list) {
if (hl->host_reset) if (hl->host_reset)
hl->host_reset(host); hl->host_reset(host);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment