diff options
author | Alex Grad <alex.grad@gmail.com> | 2013-03-09 22:06:19 -0500 |
---|---|---|
committer | Michael Ellerman <michael@ellerman.id.au> | 2013-04-17 23:03:56 -0400 |
commit | c0b52c143ee46c5922b5aa5c48c00145b5296441 (patch) | |
tree | e7207654334979332a7e8e3f8f94ba50a26d9b81 /arch/powerpc | |
parent | 46c74751c2be904d6a23c63e7ccb990d46496fd6 (diff) |
powerpc/kgdb: Removed kmalloc returned value cast
Signed-off-by: Alex Grad <alex.grad@gmail.com>
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/kgdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/kgdb.c b/arch/powerpc/kernel/kgdb.c index 5ca82cd4a374..c1eef241017a 100644 --- a/arch/powerpc/kernel/kgdb.c +++ b/arch/powerpc/kernel/kgdb.c | |||
@@ -159,7 +159,7 @@ static int kgdb_singlestep(struct pt_regs *regs) | |||
159 | if (user_mode(regs)) | 159 | if (user_mode(regs)) |
160 | return 0; | 160 | return 0; |
161 | 161 | ||
162 | backup_current_thread_info = (struct thread_info *)kmalloc(sizeof(struct thread_info), GFP_KERNEL); | 162 | backup_current_thread_info = kmalloc(sizeof(struct thread_info), GFP_KERNEL); |
163 | /* | 163 | /* |
164 | * On Book E and perhaps other processors, singlestep is handled on | 164 | * On Book E and perhaps other processors, singlestep is handled on |
165 | * the critical exception stack. This causes current_thread_info() | 165 | * the critical exception stack. This causes current_thread_info() |