Skip to content

Commit cf82436

Browse files
Mani-Sadhasivammiquelraynal
authored andcommitted
mtd: rawnand: qcom: Wrap qcom_nand_exec_op() to 80 columns
Both the function arguments and the definition could be wrapped to 80 columns to save line space. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20230805174146.57006-7-manivannan.sadhasivam@linaro.org
1 parent ab15aab commit cf82436

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

drivers/mtd/nand/raw/qcom_nandc.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3051,14 +3051,12 @@ static int qcom_check_op(struct nand_chip *chip,
30513051
}
30523052

30533053
static int qcom_nand_exec_op(struct nand_chip *chip,
3054-
const struct nand_operation *op,
3055-
bool check_only)
3054+
const struct nand_operation *op, bool check_only)
30563055
{
30573056
if (check_only)
30583057
return qcom_check_op(chip, op);
30593058

3060-
return nand_op_parser_exec_op(chip, &qcom_op_parser,
3061-
op, check_only);
3059+
return nand_op_parser_exec_op(chip, &qcom_op_parser, op, check_only);
30623060
}
30633061

30643062
static const struct nand_controller_ops qcom_nandc_ops = {

0 commit comments

Comments
 (0)