[xtensa-cvscommit] linux/arch/xtensa/kernel proc.c,1.1.1.1,1.2
Brought to you by:
zankel
|
From: <joe...@us...> - 2002-12-02 20:33:01
|
Update of /cvsroot/xtensa/linux/arch/xtensa/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv6920/arch/xtensa/kernel
Modified Files:
proc.c
Log Message:
Remove dead code, cruft leftover from previous cpuinfo implementation.
Index: proc.c
===================================================================
RCS file: /cvsroot/xtensa/linux/arch/xtensa/kernel/proc.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** proc.c 28 Aug 2002 16:10:14 -0000 1.1.1.1
--- proc.c 2 Dec 2002 20:32:22 -0000 1.2
***************
*** 9,12 ****
--- 9,16 ----
*/
+ #if 0
+
+ /* Should we just move this function to irq.c and remove this file? */
+
#include <linux/delay.h>
#include <linux/kernel.h>
***************
*** 14,25 ****
#include <asm/processor.h>
! int get_cpuinfo(char *buffer)
! {
! /* XTFIXME: Need an implementation for Xtensa Processors. See
! * other architectures for examples.
! */
! buffer = "Nothing to report in LINUX/arch/xtensa/kernel/proc.c::get_cpuinfo()\n";
! return strlen(buffer);
! }
void init_irq_proc(void)
--- 18,22 ----
#include <asm/processor.h>
! #endif
void init_irq_proc(void)
***************
*** 27,28 ****
--- 24,26 ----
/* Nothing, for now. */
}
+
|