diff options
author | Nicolas Kaiser <nikai@nikai.net> | 2010-10-26 15:47:52 +0000 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2011-03-14 14:25:59 -0700 |
commit | 2a543904ddcb463db9d56d1efcb2f80884ea55f3 (patch) | |
tree | 57cdb9098e4299cc47bb21e8061b671b24d70219 /drivers/infiniband | |
parent | a5bbef0b2deb7b943f095181309ecc9e1fc91c0f (diff) | |
download | linux-2a543904ddcb463db9d56d1efcb2f80884ea55f3.tar.bz2 |
IB/ipath: Don't reset disabled devices
The comment some lines above states that disabled devices must not reset.
Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/ipath/ipath_sysfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_sysfs.c b/drivers/infiniband/hw/ipath/ipath_sysfs.c index b8cb2f145ae4..8991677e9a08 100644 --- a/drivers/infiniband/hw/ipath/ipath_sysfs.c +++ b/drivers/infiniband/hw/ipath/ipath_sysfs.c @@ -557,6 +557,7 @@ static ssize_t store_reset(struct device *dev, dev_info(dev,"Unit %d is disabled, can't reset\n", dd->ipath_unit); ret = -EINVAL; + goto bail; } ret = ipath_reset_device(dd->ipath_unit); bail: |