On Thu, Dec 6, 2012 at 9:05 PM, Steven J. Hill <sjhill@xxxxxxxx> wrote: > From: "Steven J. Hill" <sjhill@xxxxxxxx> > > Clean-up tabs, spaces, macros, etc. after adding in microMIPS > instructions for the micro-assembler. My personal preference would be to fix up the whitespace in the existing code first, then make the new (MM) code follow the convention from the get-go. > -struct fp0_format { /* FPU multipy and add format (MIPS32) */ > +struct fp0_format { /* FPU multipy and add format (MIPS32) */ "multiply" > --- a/arch/mips/kernel/proc.c > +++ b/arch/mips/kernel/proc.c > @@ -73,6 +73,7 @@ static int show_cpuinfo(struct seq_file *m, void *v) > if (cpu_has_dsp) seq_printf(m, "%s", " dsp"); > if (cpu_has_dsp2) seq_printf(m, "%s", " dsp2"); > if (cpu_has_mipsmt) seq_printf(m, "%s", " mt"); > + if (cpu_has_mmips) seq_printf(m, "%s", " micromips"); > seq_printf(m, "\n"); This should probably go into a different commit.