diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2013-10-10 16:50:55 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2013-10-24 17:17:02 +0200 |
commit | 5ff4212f194f97b3a0f41745f231525c5c50dcbb (patch) | |
tree | 27c0af4fc675a6cdb203b5fea45707f77c8a57dc /arch/s390 | |
parent | 72b7fb5fda25e1213cb9f63bf712161c66877552 (diff) | |
download | linux-5ff4212f194f97b3a0f41745f231525c5c50dcbb.tar.bz2 |
s390/crashdump: remove unused variable
Get rid of this compile warning:
arch/s390/kernel/crash_dump.c: In function 'copy_from_realmem':
arch/s390/kernel/crash_dump.c:48:6: warning: unused variable 'rc'
[-Wunused-variable]
int rc;
^
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kernel/crash_dump.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/s390/kernel/crash_dump.c b/arch/s390/kernel/crash_dump.c index 7dd21720e5b0..3db6af0601a5 100644 --- a/arch/s390/kernel/crash_dump.c +++ b/arch/s390/kernel/crash_dump.c @@ -45,7 +45,6 @@ static inline void *load_real_addr(void *addr) static int copy_from_realmem(void *dest, void *src, size_t count) { unsigned long size; - int rc; if (!count) return 0; |