CVSROOT: /home/cvs
Module name: linux
Changes by: ralf@ftp.linux-mips.org 05/01/30 20:48:09
Modified files:
include/asm-mips/sibyte: board.h
Log message:
Chainsaw Kconfig a bit further. Highlights:
o Systems are now selected in a choice statement ensuring only one
mutually exclusive system ever can be enabled.
o Systems indicate via SYS_SUPPORTS_32BIT_KERNEL and
SYS_SUPPORTS_64BIT_KERNEL which kernel variants are supported.
o Equivalent to that CPU_SUPPORTS_32BIT_KERNEL and
CPU_SUPPORTS_64BIT_KERNEL indicate what kernel types are supported
by a particular processor.
o SYS_SUPPORTS_BIG_ENDIAN and SYS_SUPPORTS_LITTLE_ENDIAN indicate
the endianess.
o Many of the platform specific options are now in new platform
specific Kconfig files.
diff -urN linux/include/asm-mips/sibyte/board.h
linux/include/asm-mips/sibyte/board.h
--- linux/include/asm-mips/sibyte/board.h 2004/03/16 00:57:01 1.6
+++ linux/include/asm-mips/sibyte/board.h 2005/01/30 20:48:09 1.7
@@ -21,8 +21,6 @@
#include <linux/config.h>
-#ifdef CONFIG_SIBYTE_BOARD
-
#if defined(CONFIG_SIBYTE_SWARM) || defined(CONFIG_SIBYTE_PTSWARM) || \
defined(CONFIG_SIBYTE_CRHONE) || defined(CONFIG_SIBYTE_CRHINE) || \
defined(CONFIG_SIBYTE_LITTLESUR)
@@ -54,16 +52,4 @@
#define setleds(t0,t1,c0,c1,c2,c3)
#endif /* LEDS_PHYS */
-#else
-
-#ifdef LEDS_PHYS
-extern void setleds(char *str);
-#else
-#define setleds(s) do { } while (0)
-#endif /* LEDS_PHYS */
-
-#endif /* __ASSEMBLY__ */
-
-#endif /* CONFIG_SIBYTE_BOARD */
-
#endif /* _SIBYTE_BOARD_H */
|