aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/s390/Kconfig8
-rw-r--r--arch/s390/kernel/setup.c1
2 files changed, 5 insertions, 4 deletions
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig
index c03fef7a9c22..17dbb4318261 100644
--- a/arch/s390/Kconfig
+++ b/arch/s390/Kconfig
@@ -273,11 +273,11 @@ config MARCH_Z10
273 on older machines. 273 on older machines.
274 274
275config MARCH_Z196 275config MARCH_Z196
276 bool "IBM zEnterprise 196" 276 bool "IBM zEnterprise 114 and 196"
277 help 277 help
278 Select this to enable optimizations for IBM zEnterprise 196 278 Select this to enable optimizations for IBM zEnterprise 114 and 196
279 (2817 series). The kernel will be slightly faster but will not work 279 (2818 and 2817 series). The kernel will be slightly faster but will
280 on older machines. 280 not work on older machines.
281 281
282endchoice 282endchoice
283 283
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c
index 18640ff0aa1a..7b371c37061d 100644
--- a/arch/s390/kernel/setup.c
+++ b/arch/s390/kernel/setup.c
@@ -752,6 +752,7 @@ static void __init setup_hwcaps(void)
752 strcpy(elf_platform, "z10"); 752 strcpy(elf_platform, "z10");
753 break; 753 break;
754 case 0x2817: 754 case 0x2817:
755 case 0x2818:
755 strcpy(elf_platform, "z196"); 756 strcpy(elf_platform, "z196");
756 break; 757 break;
757 } 758 }