fix(sme): use rdsvl instead of rdvl

Use rdsvl instruction to get Streaming SVE vector length instead of rdvl
instruction. When the CPU is in Streaming SVE mode both rdvl and rdsvl
instruction returns the same value but that is not true when the CPU is
in Normal SVE mode. So it's preferred to use rdsvl to get SVL.

Signed-off-by: Arunachalam Ganapathy <arunachalam.ganapathy@arm.com>
Change-Id: Ieb6226f4fc275ee8a81eb359af465c26e307bc75
diff --git a/include/lib/extensions/sme.h b/include/lib/extensions/sme.h
index b20a8c0..99372e4 100644
--- a/include/lib/extensions/sme.h
+++ b/include/lib/extensions/sme.h
@@ -28,7 +28,7 @@
 void sme_smstop(smestop_instruction_type_t smstop_type);
 
 /* Assembly function prototypes. */
-uint64_t sme_rdvl_1(void);
+uint64_t sme_rdsvl_1(void);
 void sme_try_illegal_instruction(void);
 void sme_vector_to_ZA(const uint64_t *input_vector);
 void sme_ZA_to_vector(const uint64_t *output_vector);