]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mtd: nand: fix trivial spelling error
authorBrian Norris <computersforpeace@gmail.com>
Mon, 3 Oct 2016 16:49:35 +0000 (09:49 -0700)
committerBrian Norris <computersforpeace@gmail.com>
Mon, 3 Oct 2016 16:52:23 +0000 (09:52 -0700)
Introduced by commit fde85cfd2d07 ("mtd: nand: Fix nand_command_lp() for
8bits opcodes") and I didn't have the heart to have Boris rewrite his
pull request just for that. Anyway, there's some value in having stable
commit hashes.

Signed-off-by: Brian Norris <computersforpeace@gmail.com>
drivers/mtd/nand/nand_base.c

index 7a00245ebada3780d195db78b507d86e7ed0d2a4..e5718e5ecf925868012eb0332c43d071f32a727f 100644 (file)
@@ -746,7 +746,7 @@ static void nand_command_lp(struct mtd_info *mtd, unsigned int command,
                        chip->cmd_ctrl(mtd, column, ctrl);
                        ctrl &= ~NAND_CTRL_CHANGE;
 
-                       /* Only ouput a single addr cycle for 8bits opcodes. */
+                       /* Only output a single addr cycle for 8bits opcodes. */
                        if (!nand_opcode_8bits(command))
                                chip->cmd_ctrl(mtd, column >> 8, ctrl);
                }