diff options
author | Joe Perches <joe@perches.com> | 2015-01-05 07:29:18 -0500 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-01-08 04:02:52 -0500 |
commit | 91c0837e6dee8c694c8849c70e1f0f770d92d072 (patch) | |
tree | c05d985f7d41d526711a25605b0a6b4f35349e08 /arch/s390/mm | |
parent | a7e75d434b53b45ae60779903904d4fbdbd145a5 (diff) |
s390: remove unnecessary KERN_CONT
This has no effect as KERN_CONT is an empty string,
It's probably just a missing conversion artifact as the
other pr_cont uses in the same file don't have this prefix.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/mm')
-rw-r--r-- | arch/s390/mm/fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/mm/fault.c b/arch/s390/mm/fault.c index 811937bb90be..232c14ea4269 100644 --- a/arch/s390/mm/fault.c +++ b/arch/s390/mm/fault.c | |||
@@ -171,7 +171,7 @@ static void dump_pagetable(unsigned long asce, unsigned long address) | |||
171 | table = table + ((address >> 20) & 0x7ff); | 171 | table = table + ((address >> 20) & 0x7ff); |
172 | if (bad_address(table)) | 172 | if (bad_address(table)) |
173 | goto bad; | 173 | goto bad; |
174 | pr_cont(KERN_CONT "S:%016lx ", *table); | 174 | pr_cont("S:%016lx ", *table); |
175 | if (*table & (_SEGMENT_ENTRY_INVALID | _SEGMENT_ENTRY_LARGE)) | 175 | if (*table & (_SEGMENT_ENTRY_INVALID | _SEGMENT_ENTRY_LARGE)) |
176 | goto out; | 176 | goto out; |
177 | table = (unsigned long *)(*table & _SEGMENT_ENTRY_ORIGIN); | 177 | table = (unsigned long *)(*table & _SEGMENT_ENTRY_ORIGIN); |