Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bf10b668 authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky
Browse files

s390/smp: use sigp condition code define



Use proper define instead of open-coding the condition code value.

Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 9cf8edb7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ static inline int __pcpu_sigp(u16 addr, u8 order, unsigned long parm,
	int cc;

	cc = ____pcpu_sigp(addr, order, parm, &_status);
	if (status && cc == 1)
	if (status && cc == SIGP_CC_STATUS_STORED)
		*status = _status;
	return cc;
}