riscv: alternative: fix typo in macro name

alternative-macros.h defines ALT_NEW_CONTENT in its assembly part
and ALT_NEW_CONSTENT in the C part. Most likely it is the latter
that is wrong.

Fixes: 6f4eea90465ad
(riscv: Introduce alternative mechanism to apply errata solution)
Signed-off-by: Vitaly Wool <vitaly.wool@konsulko.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>

authored by Vitaly Wool and committed by Palmer Dabbelt 858cf860 42e0e0b4

+2 -2
+2 -2
arch/riscv/include/asm/alternative-macros.h
··· 51 51 REG_ASM " " newlen "\n" \ 52 52 ".word " errata_id "\n" 53 53 54 - #define ALT_NEW_CONSTENT(vendor_id, errata_id, enable, new_c) \ 54 + #define ALT_NEW_CONTENT(vendor_id, errata_id, enable, new_c) \ 55 55 ".if " __stringify(enable) " == 1\n" \ 56 56 ".pushsection .alternative, \"a\"\n" \ 57 57 ALT_ENTRY("886b", "888f", __stringify(vendor_id), __stringify(errata_id), "889f - 888f") \ ··· 69 69 "886 :\n" \ 70 70 old_c "\n" \ 71 71 "887 :\n" \ 72 - ALT_NEW_CONSTENT(vendor_id, errata_id, enable, new_c) 72 + ALT_NEW_CONTENT(vendor_id, errata_id, enable, new_c) 73 73 74 74 #define _ALTERNATIVE_CFG(old_c, new_c, vendor_id, errata_id, CONFIG_k) \ 75 75 __ALTERNATIVE_CFG(old_c, new_c, vendor_id, errata_id, IS_ENABLED(CONFIG_k))