sleep: don't log duplicate error

write_resume_config() logs error on its own.
This commit is contained in:
Mike Yuan 2023-12-27 22:31:57 +08:00
parent 6e819bd2bd
commit fe33920c2a
No known key found for this signature in database
GPG key ID: 417471C0A40F58B3

View file

@ -253,10 +253,8 @@ static int execute(
return r;
r = write_resume_config(hibernation_device.devno, hibernation_device.offset, hibernation_device.path);
if (r < 0) {
log_error_errno(r, "Failed to write hibernation device to /sys/power/resume or /sys/power/resume_offset: %m");
if (r < 0)
goto fail;
}
}
r = write_mode(sleep_config->modes[operation]);