staging: goldfish: (Coding Style) Fixed parenthesis alignment.
authorEdvard Holst <edvard.holst@gmail.com>
Wed, 30 Aug 2017 11:33:22 +0000 (11:33 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 31 Aug 2017 16:21:37 +0000 (18:21 +0200)
Fixed paranthesis alignment for compliance with checkpatch.

Signed-off-by: Edvard Holst <edvard.holst@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/goldfish/goldfish_nand.c

index e742b92..52cc136 100644 (file)
@@ -153,7 +153,7 @@ static int goldfish_nand_read_oob(struct mtd_info *mtd, loff_t ofs,
        ofs += mtd->writesize + ops->ooboffs;
        if (ops->oobbuf)
                ops->oobretlen = goldfish_nand_cmd(mtd, NAND_CMD_READ, ofs,
-                                               ops->ooblen, ops->oobbuf);
+                                                  ops->ooblen, ops->oobbuf);
        return 0;
 
 invalid_arg:
@@ -185,7 +185,7 @@ static int goldfish_nand_write_oob(struct mtd_info *mtd, loff_t ofs,
        ofs += mtd->writesize + ops->ooboffs;
        if (ops->oobbuf)
                ops->oobretlen = goldfish_nand_cmd(mtd, NAND_CMD_WRITE, ofs,
-                                               ops->ooblen, ops->oobbuf);
+                                                  ops->ooblen, ops->oobbuf);
        return 0;
 
 invalid_arg: