diff options
author | Bryan O'Sullivan <bos@pathscale.com> | 2006-04-24 17:22:59 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2006-05-01 15:14:13 -0400 |
commit | 23e86a4584606a08393e0ad3a5ca27b19a3de374 (patch) | |
tree | b0f7c792c53611402e31bb9405d05214467fa3d1 /drivers/infiniband | |
parent | 68dd43a162b43218d2e5ac1d139c1d53da965f54 (diff) |
IB/ipath: iterate over correct number of ports during reset
Signed-off-by: Bryan O'Sullivan <bos@pathscale.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/ipath/ipath_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_driver.c b/drivers/infiniband/hw/ipath/ipath_driver.c index 7ff95b72d1fc..398add4d4cb1 100644 --- a/drivers/infiniband/hw/ipath/ipath_driver.c +++ b/drivers/infiniband/hw/ipath/ipath_driver.c | |||
@@ -1959,7 +1959,7 @@ int ipath_reset_device(int unit) | |||
1959 | } | 1959 | } |
1960 | 1960 | ||
1961 | if (dd->ipath_pd) | 1961 | if (dd->ipath_pd) |
1962 | for (i = 1; i < dd->ipath_portcnt; i++) { | 1962 | for (i = 1; i < dd->ipath_cfgports; i++) { |
1963 | if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) { | 1963 | if (dd->ipath_pd[i] && dd->ipath_pd[i]->port_cnt) { |
1964 | ipath_dbg("unit %u port %d is in use " | 1964 | ipath_dbg("unit %u port %d is in use " |
1965 | "(PID %u cmd %s), can't reset\n", | 1965 | "(PID %u cmd %s), can't reset\n", |