Hi, Yoichi Yuasa wrote: > Hi Ralf, > > This patch has merged a few printk in check_wait(). > > Yoichi > > Signed-off-by: Yoichi Yuasa <yoichi_yuasa@xxxxxxxxxxxxxx> > > diff -pruN -X mips/Documentation/dontdiff mips-orig/arch/mips/kernel/cpu-probe.c mips/arch/mips/kernel/cpu-probe.c > --- mips-orig/arch/mips/kernel/cpu-probe.c 2006-10-18 10:20:24.397574000 +0900 > +++ mips/arch/mips/kernel/cpu-probe.c 2006-10-18 10:28:53.113366750 +0900 > @@ -120,11 +120,9 @@ static inline void check_wait(void) does it really need to be inlined ? > case CPU_R3081: [snip] > + > + if (cpu_wait) > + printk(" available.\n"); > + else > + printk(" unavailable.\n"); what about: printk(" %savailable.\n", cpu_wait ? "" : "un"); Franck