s390: add z13s model number to z13 elf platform
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Fri, 19 Feb 2016 09:46:08 +0000 (10:46 +0100)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Wed, 24 Feb 2016 11:18:07 +0000 (12:18 +0100)
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/Kconfig
arch/s390/kernel/setup.c

index 3be9c83..683af90 100644 (file)
@@ -254,12 +254,12 @@ config MARCH_ZEC12
          older machines.
 
 config MARCH_Z13
-       bool "IBM z13"
+       bool "IBM z13s and z13"
        select HAVE_MARCH_Z13_FEATURES
        help
-         Select this to enable optimizations for IBM z13 (2964 series).
-         The kernel will be slightly faster but will not work on older
-         machines.
+         Select this to enable optimizations for IBM z13s and z13 (2965 and
+         2964 series). The kernel will be slightly faster but will not work on
+         older machines.
 
 endchoice
 
index 9220db5..b1fbcc0 100644 (file)
@@ -779,6 +779,7 @@ static int __init setup_hwcaps(void)
                strcpy(elf_platform, "zEC12");
                break;
        case 0x2964:
+       case 0x2965:
                strcpy(elf_platform, "z13");
                break;
        }