mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-20 08:52:12 +01:00
cpu: imx94: Add support for i.MX94 in get_imx_type_str()
Add a case for i.MX94 to return the correct string identifier in the get_imx_type_str() function. This ensures proper CPU type reporting for i.MX94 platforms. Signed-off-by: Alice Guo <alice.guo@nxp.com>
This commit is contained in:
parent
a87b928326
commit
a2d62d3b1d
@ -113,6 +113,8 @@ static const char *get_imx_type_str(u32 imxtype)
|
||||
return "91(01)";/* iMX91 9x9 Specific feature */
|
||||
case MXC_CPU_IMX95:
|
||||
return "95";
|
||||
case MXC_CPU_IMX94:
|
||||
return "94";
|
||||
default:
|
||||
return "??";
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user