aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/char
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/s390/char')
-rw-r--r--drivers/s390/char/zcore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/s390/char/zcore.c b/drivers/s390/char/zcore.c
index 9e5e14686e75..794820a123d0 100644
--- a/drivers/s390/char/zcore.c
+++ b/drivers/s390/char/zcore.c
@@ -30,8 +30,8 @@
30 30
31#define TRACE(x...) debug_sprintf_event(zcore_dbf, 1, x) 31#define TRACE(x...) debug_sprintf_event(zcore_dbf, 1, x)
32 32
33#define TO_USER 0 33#define TO_USER 1
34#define TO_KERNEL 1 34#define TO_KERNEL 0
35#define CHUNK_INFO_SIZE 34 /* 2 16-byte char, each followed by blank */ 35#define CHUNK_INFO_SIZE 34 /* 2 16-byte char, each followed by blank */
36 36
37enum arch_id { 37enum arch_id {
@@ -73,7 +73,7 @@ static struct ipl_parameter_block *ipl_block;
73 * @count: Size of buffer, which should be copied 73 * @count: Size of buffer, which should be copied
74 * @mode: Either TO_KERNEL or TO_USER 74 * @mode: Either TO_KERNEL or TO_USER
75 */ 75 */
76static int memcpy_hsa(void *dest, unsigned long src, size_t count, int mode) 76int memcpy_hsa(void *dest, unsigned long src, size_t count, int mode)
77{ 77{
78 int offs, blk_num; 78 int offs, blk_num;
79 static char buf[PAGE_SIZE] __attribute__((__aligned__(PAGE_SIZE))); 79 static char buf[PAGE_SIZE] __attribute__((__aligned__(PAGE_SIZE)));