h8300 trival patches
- warning fix. - call trace area check fix. - There is no meaning, ' & ' it deletes Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
5a9a62bb03
commit
8778beb981
@@ -136,7 +136,7 @@ void show_stack(struct task_struct *task, unsigned long *esp)
|
||||
printk("\nCall Trace:");
|
||||
i = 0;
|
||||
stack = esp;
|
||||
while (((unsigned long)stack & (THREAD_SIZE - 1)) == 0) {
|
||||
while (((unsigned long)stack & (THREAD_SIZE - 1)) != 0) {
|
||||
addr = *stack++;
|
||||
/*
|
||||
* If the address is either in the text segment of the
|
||||
|
Reference in New Issue
Block a user