diff options
author | Nishanth Menon <nm@ti.com> | 2015-10-04 02:02:56 +0200 |
---|---|---|
committer | Santosh Shilimkar <ssantosh@kernel.org> | 2015-10-06 18:51:08 +0200 |
commit | 01cf228b555b323bba9c76f96c07fb93f1064cba (patch) | |
tree | 7eecd4ca5fb370b5a117d87377ae755cefeed4a9 /arch/arm/mach-keystone/keystone.c | |
parent | Documentation: dt: keystone: provide SoC specific compatible flags (diff) | |
download | linux-01cf228b555b323bba9c76f96c07fb93f1064cba.tar.xz linux-01cf228b555b323bba9c76f96c07fb93f1064cba.zip |
ARM: keystone: Update compatible to have SoC specific matches
With future SoCs of keystone2 family, the generic compatible match
may not be sufficient to handle SoC specific handling. So introduce
matches based on SoC compatiblity.
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org>
Diffstat (limited to 'arch/arm/mach-keystone/keystone.c')
-rw-r--r-- | arch/arm/mach-keystone/keystone.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-keystone/keystone.c b/arch/arm/mach-keystone/keystone.c index e288010522f9..c279293f084c 100644 --- a/arch/arm/mach-keystone/keystone.c +++ b/arch/arm/mach-keystone/keystone.c @@ -97,6 +97,9 @@ static long long __init keystone_pv_fixup(void) } static const char *const keystone_match[] __initconst = { + "ti,k2hk", + "ti,k2e", + "ti,k2l", "ti,keystone", NULL, }; |