diff options
author | Mark Brown <[email protected]> | 2023-02-09 20:04:07 +0000 |
---|---|---|
committer | Catalin Marinas <[email protected]> | 2023-02-22 15:54:32 +0000 |
commit | 0269680e5eb88f6223c53a8b3138cbfa60ba7657 (patch) | |
tree | 5b6726ee96526af3500fe7569e9e03359818f0b9 | |
parent | e74a68468062d7ebd8ce17069e12ccc64cc6a58c (diff) |
arm64/fpsimd: Remove warning for SME without SVE
Support for SME without SVE is architecturally valid and has now been tested
well enough so let's remove the warning message that is displayed at boot.
Signed-off-by: Mark Brown <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Catalin Marinas <[email protected]>
-rw-r--r-- | arch/arm64/kernel/fpsimd.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm64/kernel/fpsimd.c b/arch/arm64/kernel/fpsimd.c index c11cb445ffca..7e823ee7ffa2 100644 --- a/arch/arm64/kernel/fpsimd.c +++ b/arch/arm64/kernel/fpsimd.c @@ -2122,9 +2122,6 @@ static int __init fpsimd_init(void) pr_notice("Advanced SIMD is not implemented\n"); - if (cpu_have_named_feature(SME) && !cpu_have_named_feature(SVE)) - pr_notice("SME is implemented but not SVE\n"); - sve_sysctl_init(); sme_sysctl_init(); |