diff options
author | Shawn Guo <shawn.guo@freescale.com> | 2014-05-13 17:46:16 +0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-05-16 11:35:25 +0400 |
commit | d9654dceb315ccdabf4a5494109a4cc0fb2408a4 (patch) | |
tree | 4e17d1e5d9621e18602c9553a0db5fabd6a38fab /arch/arm/mach-imx/cpu.c | |
parent | d55135689019c3a0b26bccd400d90c6d2fd13439 (diff) | |
download | linux-d9654dceb315ccdabf4a5494109a4cc0fb2408a4.tar.xz |
ARM: imx: add basic imx6sx SoC support
Add basic suppport for i.MX6 SoloX SoC.
Signed-off-by: Anson Huang <b20788@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/mach-imx/cpu.c')
-rw-r--r-- | arch/arm/mach-imx/cpu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/cpu.c b/arch/arm/mach-imx/cpu.c index ba3b498a67ec..bbe8ff1f0412 100644 --- a/arch/arm/mach-imx/cpu.c +++ b/arch/arm/mach-imx/cpu.c @@ -111,6 +111,9 @@ struct device * __init imx_soc_device_init(void) case MXC_CPU_IMX6DL: soc_id = "i.MX6DL"; break; + case MXC_CPU_IMX6SX: + soc_id = "i.MX6SX"; + break; case MXC_CPU_IMX6Q: soc_id = "i.MX6Q"; break; |