aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/s390/kernel/crash_dump.c2
-rw-r--r--drivers/s390/crypto/ap_bus.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/kernel/crash_dump.c b/arch/s390/kernel/crash_dump.c
index 3986c9f62191..29df8484282b 100644
--- a/arch/s390/kernel/crash_dump.c
+++ b/arch/s390/kernel/crash_dump.c
@@ -173,7 +173,7 @@ int copy_oldmem_kernel(void *dst, void *src, size_t count)
173/* 173/*
174 * Copy memory of the old, dumped system to a user space virtual address 174 * Copy memory of the old, dumped system to a user space virtual address
175 */ 175 */
176int copy_oldmem_user(void __user *dst, void *src, size_t count) 176static int copy_oldmem_user(void __user *dst, void *src, size_t count)
177{ 177{
178 unsigned long from, len; 178 unsigned long from, len;
179 int rc; 179 int rc;
diff --git a/drivers/s390/crypto/ap_bus.c b/drivers/s390/crypto/ap_bus.c
index 24ec282e15d8..327255da115a 100644
--- a/drivers/s390/crypto/ap_bus.c
+++ b/drivers/s390/crypto/ap_bus.c
@@ -787,7 +787,7 @@ static enum ap_wait ap_sm_setirq_wait(struct ap_device *ap_dev)
787/* 787/*
788 * AP state machine jump table 788 * AP state machine jump table
789 */ 789 */
790ap_func_t *ap_jumptable[NR_AP_STATES][NR_AP_EVENTS] = { 790static ap_func_t *ap_jumptable[NR_AP_STATES][NR_AP_EVENTS] = {
791 [AP_STATE_RESET_START] = { 791 [AP_STATE_RESET_START] = {
792 [AP_EVENT_POLL] = ap_sm_reset, 792 [AP_EVENT_POLL] = ap_sm_reset,
793 [AP_EVENT_TIMEOUT] = ap_sm_nop, 793 [AP_EVENT_TIMEOUT] = ap_sm_nop,