staging: goldfish: (Coding Style) Fixed parenthesis alignment.

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>
This commit is contained in:
Edvard Holst 2017-08-30 11:33:22 +00:00 committed by Greg Kroah-Hartman
parent e25201d667
commit db3edb1341
1 changed files with 2 additions and 2 deletions

View 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: