mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-26 15:45:14 +08:00
s390: fix 'novx' early parameter handling
Specifying the 'novx' kernel parameter always results in a warning: Malformed early option 'novx' The reason for this is that the novx early parameter handling function always returns a non-zero value which means that an error occurred. Fix this and return the correct zero value instead. 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
d2907225cf
commit
673cfddf6e
@ -420,7 +420,7 @@ static int __init disable_vector_extension(char *str)
|
|||||||
{
|
{
|
||||||
S390_lowcore.machine_flags &= ~MACHINE_FLAG_VX;
|
S390_lowcore.machine_flags &= ~MACHINE_FLAG_VX;
|
||||||
__ctl_clear_bit(0, 17);
|
__ctl_clear_bit(0, 17);
|
||||||
return 1;
|
return 0;
|
||||||
}
|
}
|
||||||
early_param("novx", disable_vector_extension);
|
early_param("novx", disable_vector_extension);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user