Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1967fa08 authored by Sachin Kamat's avatar Sachin Kamat Committed by MyungJoo Ham
Browse files

extcon: max77693: Fix coding style



As per kernel coding style, if one branch of conditional statement has braces,
the other one should have too.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
parent 00af4b16
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -665,9 +665,9 @@ static int __devinit max77693_muic_probe(struct platform_device *pdev)
	}
	info->dev = &pdev->dev;
	info->max77693 = max77693;
	if (info->max77693->regmap_muic)
	if (info->max77693->regmap_muic) {
		dev_dbg(&pdev->dev, "allocate register map\n");
	else {
	} else {
		info->max77693->regmap_muic = devm_regmap_init_i2c(
						info->max77693->muic,
						&max77693_muic_regmap_config);