diff options
author | Alex Grad <alex.grad@gmail.com> | 2013-03-10 03:06:19 +0000 |
---|---|---|
committer | Michael Ellerman <michael@ellerman.id.au> | 2013-04-18 13:03:56 +1000 |
commit | c0b52c143ee46c5922b5aa5c48c00145b5296441 (patch) | |
tree | e7207654334979332a7e8e3f8f94ba50a26d9b81 | |
parent | 46c74751c2be904d6a23c63e7ccb990d46496fd6 (diff) | |
download | linux-c0b52c143ee46c5922b5aa5c48c00145b5296441.tar.gz linux-c0b52c143ee46c5922b5aa5c48c00145b5296441.tar.bz2 linux-c0b52c143ee46c5922b5aa5c48c00145b5296441.zip |
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>
-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) if (user_mode(regs)) return 0; - backup_current_thread_info = (struct thread_info *)kmalloc(sizeof(struct thread_info), GFP_KERNEL); + backup_current_thread_info = kmalloc(sizeof(struct thread_info), GFP_KERNEL); /* * On Book E and perhaps other processors, singlestep is handled on * the critical exception stack. This causes current_thread_info() |