Skip to content

Commit

Permalink
[S390] return 'count' for successful execution of dasd_eer_enable.
Browse files Browse the repository at this point in the history
Currently the return value of 'dasd_eer_enable' is returned - even if the
function returned '0'. Now return 'count' for successful execution.

Signed-off-by: Horst Hummel <horst.hummel@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Horst Hummel authored and Martin Schwidefsky committed Dec 4, 2006
1 parent 29145a6 commit 645c98c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/s390/block/dasd_devmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -877,12 +877,13 @@ dasd_eer_store(struct device *dev, struct device_attribute *attr,
if (((endp + 1) < (buf + count)) || (val > 1))
return -EINVAL;

rc = count;
if (val)
if (val) {
rc = dasd_eer_enable(devmap->device);
else
if (rc)
return rc;
} else
dasd_eer_disable(devmap->device);
return rc;
return count;
}

static DEVICE_ATTR(eer_enabled, 0644, dasd_eer_show, dasd_eer_store);
Expand Down

0 comments on commit 645c98c

Please sign in to comment.