From: Alice Guo <[email protected]> This patch is used to add the imx type string of i.MX952 ao that the i.MX952 CPU info can be printed.
Signed-off-by: Alice Guo <[email protected]> --- drivers/cpu/imx8_cpu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/cpu/imx8_cpu.c b/drivers/cpu/imx8_cpu.c index 5f17122c36c..1c78f882775 100644 --- a/drivers/cpu/imx8_cpu.c +++ b/drivers/cpu/imx8_cpu.c @@ -115,6 +115,8 @@ static const char *get_imx_type_str(u32 imxtype) return "95"; case MXC_CPU_IMX94: return "94"; + case MXC_CPU_IMX952: + return "952"; default: return "??"; } -- 2.43.0

