aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2015-04-15 19:39:15 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2015-04-15 19:39:15 -0400
commiteea3a00264cf243a28e4331566ce67b86059339d (patch)
tree487f16389e0dfa32e9caa7604d1274a7dcda8f04 /arch/s390
parente7c82412433a8039616c7314533a0a1c025d99bf (diff)
parente693d73c20ffdb06840c9378f367bad849ac0d5d (diff)
Merge branch 'akpm' (patches from Andrew)
Merge second patchbomb from Andrew Morton: - the rest of MM - various misc bits - add ability to run /sbin/reboot at reboot time - printk/vsprintf changes - fiddle with seq_printf() return value * akpm: (114 commits) parisc: remove use of seq_printf return value lru_cache: remove use of seq_printf return value tracing: remove use of seq_printf return value cgroup: remove use of seq_printf return value proc: remove use of seq_printf return value s390: remove use of seq_printf return value cris fasttimer: remove use of seq_printf return value cris: remove use of seq_printf return value openrisc: remove use of seq_printf return value ARM: plat-pxa: remove use of seq_printf return value nios2: cpuinfo: remove use of seq_printf return value microblaze: mb: remove use of seq_printf return value ipc: remove use of seq_printf return value rtc: remove use of seq_printf return value power: wakeup: remove use of seq_printf return value x86: mtrr: if: remove use of seq_printf return value linux/bitmap.h: improve BITMAP_{LAST,FIRST}_WORD_MASK MAINTAINERS: CREDITS: remove Stefano Brivio from B43 .mailmap: add Ricardo Ribalda CREDITS: add Ricardo Ribalda Delgado ...
Diffstat (limited to 'arch/s390')
-rw-r--r--arch/s390/Kconfig1
-rw-r--r--arch/s390/pci/pci_debug.c6
2 files changed, 5 insertions, 2 deletions
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig
index a5ced5c3c1e0..de2726a487b0 100644
--- a/arch/s390/Kconfig
+++ b/arch/s390/Kconfig
@@ -328,6 +328,7 @@ config COMPAT
328 select COMPAT_BINFMT_ELF if BINFMT_ELF 328 select COMPAT_BINFMT_ELF if BINFMT_ELF
329 select ARCH_WANT_OLD_COMPAT_IPC 329 select ARCH_WANT_OLD_COMPAT_IPC
330 select COMPAT_OLD_SIGACTION 330 select COMPAT_OLD_SIGACTION
331 depends on MULTIUSER
331 help 332 help
332 Select this option if you want to enable your system kernel to 333 Select this option if you want to enable your system kernel to
333 handle system-calls from ELF binaries for 31 bit ESA. This option 334 handle system-calls from ELF binaries for 31 bit ESA. This option
diff --git a/arch/s390/pci/pci_debug.c b/arch/s390/pci/pci_debug.c
index 3229a2e570df..c22d4402ae45 100644
--- a/arch/s390/pci/pci_debug.c
+++ b/arch/s390/pci/pci_debug.c
@@ -45,8 +45,10 @@ static int pci_perf_show(struct seq_file *m, void *v)
45 45
46 if (!zdev) 46 if (!zdev)
47 return 0; 47 return 0;
48 if (!zdev->fmb) 48 if (!zdev->fmb) {
49 return seq_printf(m, "FMB statistics disabled\n"); 49 seq_puts(m, "FMB statistics disabled\n");
50 return 0;
51 }
50 52
51 /* header */ 53 /* header */
52 seq_printf(m, "FMB @ %p\n", zdev->fmb); 54 seq_printf(m, "FMB @ %p\n", zdev->fmb);