diff options
author | Afzal Mohammed <afzal@ti.com> | 2014-02-07 15:51:25 +0530 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2014-02-28 15:33:27 -0800 |
commit | 7a2e05132424ea6bd5d957941ee9805774bad32f (patch) | |
tree | a551c92e63a28911d2197dbced4fd5e2c6e854e5 /arch/arm/mach-omap2/id.c | |
parent | 4a2ed4c0a3269a3a8cf269f5177f18c836ce869b (diff) |
ARM: OMAP2+: AM43x: determine features
Determine AM43x device features by reusing AM335x helper as feature
register layout is similar.
And also exporting AM43xx family name.
Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/id.c')
-rw-r--r-- | arch/arm/mach-omap2/id.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 8a05eaf85f8a..157412e4273a 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c @@ -667,6 +667,8 @@ static const char * __init omap_get_family(void) return kasprintf(GFP_KERNEL, "OMAP4"); else if (soc_is_omap54xx()) return kasprintf(GFP_KERNEL, "OMAP5"); + else if (soc_is_am43xx()) + return kasprintf(GFP_KERNEL, "AM43xx"); else return kasprintf(GFP_KERNEL, "Unknown"); } |