The condition check in autosleep_store() is incorrect and prevents
/sys/power/autosleep from working as advertised.  Fix that.
[rjw: Added the changelog.]
Signed-off-by: Arve Hjønnevåg <arve@android.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
        int error;
 
        if (state == PM_SUSPEND_ON
-           && !(strncmp(buf, "off", 3) && strncmp(buf, "off\n", 4)))
+           && strcmp(buf, "off") && strcmp(buf, "off\n"))
                return -EINVAL;
 
        error = pm_autosleep_set_state(state);