[xtensa-cvscommit] linux/arch/xtensa/kernel setup.c,1.9,1.10
Brought to you by:
zankel
|
From: <ma...@us...> - 2003-04-01 22:08:28
|
Update of /cvsroot/xtensa/linux/arch/xtensa/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv23065
Modified Files:
setup.c
Log Message:
Remove a warning.
Index: setup.c
===================================================================
RCS file: /cvsroot/xtensa/linux/arch/xtensa/kernel/setup.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** setup.c 28 Feb 2003 01:53:09 -0000 1.9
--- setup.c 1 Apr 2003 22:08:12 -0000 1.10
***************
*** 253,257 ****
retpc = current_retpc; /* and current return address */
for( i = 0; i < MAX_TRACEBACK; i++ ) {
! if( ((unsigned)sp & 3) != 0 || sp <= prevsp || sp > __KSTK_TOS(current) ) {
printk( " (stack pointer out of range or unaligned)\n" );
break;
--- 253,258 ----
retpc = current_retpc; /* and current return address */
for( i = 0; i < MAX_TRACEBACK; i++ ) {
! if( ((unsigned)sp & 3) != 0
! || sp <= prevsp || sp > (unsigned*)__KSTK_TOS(current) ) {
printk( " (stack pointer out of range or unaligned)\n" );
break;
|