platform/x86: asus-wmi: Fix condition in charge_threshold_store()

This error handling is reversed so we return early.

Fixes: 84d8e80b0a ("platform/x86: asus-wmi: Refactor charge_threshold_store()")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
Dan Carpenter 2019-09-02 17:38:50 +03:00 committed by Andy Shevchenko
parent 109e8adfbc
commit 07779c33a7
1 changed files with 1 additions and 1 deletions

View File

@ -2068,7 +2068,7 @@ static ssize_t charge_threshold_store(struct device *dev,
return -EINVAL;
ret = asus_wmi_set_devstate(ASUS_WMI_CHARGE_THRESHOLD, value, &rv);
if (!ret)
if (ret)
return ret;
if (rv != 1)