memory: samsung: exynos5422-dmc: Correct white space issues

Remove unneeded blank line and align indentation with open parenthesis.

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
This commit is contained in:
Krzysztof Kozlowski 2020-07-24 20:23:28 +02:00
parent 90de1c75d8
commit 331b828ceb

View file

@ -1398,7 +1398,7 @@ static int exynos5_dmc_probe(struct platform_device *pdev)
return PTR_ERR(dmc->base_drexi1); return PTR_ERR(dmc->base_drexi1);
dmc->clk_regmap = syscon_regmap_lookup_by_phandle(np, dmc->clk_regmap = syscon_regmap_lookup_by_phandle(np,
"samsung,syscon-clk"); "samsung,syscon-clk");
if (IS_ERR(dmc->clk_regmap)) if (IS_ERR(dmc->clk_regmap))
return PTR_ERR(dmc->clk_regmap); return PTR_ERR(dmc->clk_regmap);
@ -1477,7 +1477,6 @@ static int exynos5_dmc_probe(struct platform_device *pdev)
exynos5_dmc_df_profile.polling_ms = 500; exynos5_dmc_df_profile.polling_ms = 500;
} }
dmc->df = devm_devfreq_add_device(dev, &exynos5_dmc_df_profile, dmc->df = devm_devfreq_add_device(dev, &exynos5_dmc_df_profile,
DEVFREQ_GOV_SIMPLE_ONDEMAND, DEVFREQ_GOV_SIMPLE_ONDEMAND,
&dmc->gov_data); &dmc->gov_data);