From: Paul M. <le...@us...> - 2006-08-09 04:23:30
|
Update of /cvsroot/linuxsh/linux/arch/sh/kernel In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv29885/arch/sh/kernel Modified Files: setup.c Log Message: Add llsc to cpu_flags[] and comment cpu-features.h, suggested by Jamie Lenehan. Index: setup.c =================================================================== RCS file: /cvsroot/linuxsh/linux/arch/sh/kernel/setup.c,v retrieving revision 1.58 retrieving revision 1.59 diff -u -d -r1.58 -r1.59 --- setup.c 7 Aug 2006 09:47:14 -0000 1.58 +++ setup.c 9 Aug 2006 04:23:26 -0000 1.59 @@ -413,8 +413,10 @@ } #ifdef CONFIG_PROC_FS +/* Symbolic CPU flags, keep in sync with asm/cpu-features.h */ static const char *cpu_flags[] = { - "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr", "ptea", NULL + "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr", + "ptea", "llsc", NULL }; static void show_cpuflags(struct seq_file *m) |