mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 13:26:41 +07:00
s390: remove couple of unneeded semicolons
Remove a couple of unneeded semicolons. This is just to reduce the noise that the coccinelle static code checker generates. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
496e59cc48
commit
0b92515916
@ -177,7 +177,7 @@ static inline int __put_user_fn(void *x, void __user *ptr, unsigned long size)
|
||||
(unsigned long *)x,
|
||||
size, spec);
|
||||
break;
|
||||
};
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
||||
@ -207,7 +207,7 @@ static inline int __get_user_fn(void *x, const void __user *ptr, unsigned long s
|
||||
(unsigned long __user *)ptr,
|
||||
size, spec);
|
||||
break;
|
||||
};
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
@ -309,7 +309,7 @@ __init const struct attribute_group **cpumf_cf_event_group(void)
|
||||
default:
|
||||
model = NULL;
|
||||
break;
|
||||
};
|
||||
}
|
||||
|
||||
if (!model)
|
||||
goto out;
|
||||
|
@ -311,7 +311,7 @@ static int handle_sske(struct kvm_vcpu *vcpu)
|
||||
if (rc < 0)
|
||||
return kvm_s390_inject_program_int(vcpu, PGM_ADDRESSING);
|
||||
start += PAGE_SIZE;
|
||||
};
|
||||
}
|
||||
|
||||
if (m3 & (SSKE_MC | SSKE_MR)) {
|
||||
if (m3 & SSKE_MB) {
|
||||
|
@ -899,7 +899,7 @@ static int vsie_run(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page)
|
||||
if (rc || scb_s->icptcode || signal_pending(current) ||
|
||||
kvm_s390_vcpu_has_irq(vcpu, 0))
|
||||
break;
|
||||
};
|
||||
}
|
||||
|
||||
if (rc == -EFAULT) {
|
||||
/*
|
||||
|
@ -154,7 +154,7 @@ dcss_mkname(char *name, char *dcss_name)
|
||||
if (name[i] == '\0')
|
||||
break;
|
||||
dcss_name[i] = toupper(name[i]);
|
||||
};
|
||||
}
|
||||
for (; i < 8; i++)
|
||||
dcss_name[i] = ' ';
|
||||
ASCEBC(dcss_name, 8);
|
||||
|
Loading…
Reference in New Issue
Block a user