mirror of https://github.com/Desuuuu/klipper.git
sched: Don't overwrite shutdown reason if shutdown called while shutdown
If a shutdown occurs while the machine is already shutdown, then keep the original shutdown reason code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
0a3c23bcf6
commit
cdd5a772e8
|
@ -276,7 +276,8 @@ void
|
|||
sched_shutdown(unsigned int reason)
|
||||
{
|
||||
irq_disable();
|
||||
shutdown_reason = reason;
|
||||
if (!shutdown_status)
|
||||
shutdown_reason = reason;
|
||||
longjmp(shutdown_jmp, 1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue