From: Ralf Baechle Date: Thu, 19 Jul 2012 07:11:15 +0000 (+0200) Subject: MIPS: Fix typo multipy -> multiply X-Git-Tag: v3.5~3^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a586e14f2c4932fd8d4f14f713874f84f36f91c6;p=profile%2Fcommon%2Fkernel-common.git MIPS: Fix typo multipy -> multiply Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/include/asm/inst.h b/arch/mips/include/asm/inst.h index 7ebfc39..ab84064 100644 --- a/arch/mips/include/asm/inst.h +++ b/arch/mips/include/asm/inst.h @@ -251,7 +251,7 @@ struct f_format { /* FPU register format */ unsigned int func : 6; }; -struct ma_format { /* FPU multipy and add format (MIPS IV) */ +struct ma_format { /* FPU multiply and add format (MIPS IV) */ unsigned int opcode : 6; unsigned int fr : 5; unsigned int ft : 5; @@ -324,7 +324,7 @@ struct f_format { /* FPU register format */ unsigned int opcode : 6; }; -struct ma_format { /* FPU multipy and add format (MIPS IV) */ +struct ma_format { /* FPU multiply and add format (MIPS IV) */ unsigned int fmt : 2; unsigned int func : 4; unsigned int fd : 5;