Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

s390/smp: use sigp condition code define

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

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by

Heiko Carstens and committed by
Martin Schwidefsky
bf10b668 9cf8edb7

+1 -1
+1 -1
arch/s390/include/asm/sigp.h
··· 59 59 int cc; 60 60 61 61 cc = ____pcpu_sigp(addr, order, parm, &_status); 62 - if (status && cc == 1) 62 + if (status && cc == SIGP_CC_STATUS_STORED) 63 63 *status = _status; 64 64 return cc; 65 65 }