git: 29a0a720c33f - main - amd64 sysarch(2): style

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Mon, 16 Sep 2024 23:02:35 UTC
The branch main has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=29a0a720c33fc70601ea85f813d982a99c3e7896

commit 29a0a720c33fc70601ea85f813d982a99c3e7896
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-09-16 19:54:03 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-09-16 23:02:14 +0000

    amd64 sysarch(2): style
    
    Sponsored by:   Advanced Micro Devices (AMD)
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
---
 sys/amd64/amd64/sys_machdep.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys/amd64/amd64/sys_machdep.c b/sys/amd64/amd64/sys_machdep.c
index b626925e1ea1..887c8f05b00d 100644
--- a/sys/amd64/amd64/sys_machdep.c
+++ b/sys/amd64/amd64/sys_machdep.c
@@ -284,7 +284,7 @@ sysarch(struct thread *td, struct sysarch_args *uap)
 		break;
 	case I386_SET_FSBASE:
 		error = copyin(uap->parms, &i386base, sizeof(i386base));
-		if (!error) {
+		if (error == 0) {
 			set_pcb_flags(pcb, PCB_FULL_IRET);
 			pcb->pcb_fsbase = i386base;
 			td->td_frame->tf_fs = _ufssel;
@@ -298,7 +298,7 @@ sysarch(struct thread *td, struct sysarch_args *uap)
 		break;
 	case I386_SET_GSBASE:
 		error = copyin(uap->parms, &i386base, sizeof(i386base));
-		if (!error) {
+		if (error == 0) {
 			set_pcb_flags(pcb, PCB_FULL_IRET);
 			pcb->pcb_gsbase = i386base;
 			td->td_frame->tf_gs = _ugssel;
@@ -313,7 +313,7 @@ sysarch(struct thread *td, struct sysarch_args *uap)
 		
 	case AMD64_SET_FSBASE:
 		error = copyin(uap->parms, &a64base, sizeof(a64base));
-		if (!error) {
+		if (error == 0) {
 			if (a64base < VM_MAXUSER_ADDRESS) {
 				set_pcb_flags(pcb, PCB_FULL_IRET);
 				pcb->pcb_fsbase = a64base;
@@ -331,7 +331,7 @@ sysarch(struct thread *td, struct sysarch_args *uap)
 
 	case AMD64_SET_GSBASE:
 		error = copyin(uap->parms, &a64base, sizeof(a64base));
-		if (!error) {
+		if (error == 0) {
 			if (a64base < VM_MAXUSER_ADDRESS) {
 				set_pcb_flags(pcb, PCB_FULL_IRET);
 				pcb->pcb_gsbase = a64base;