From: Dan Carpenter Date: Thu, 12 May 2016 19:54:57 +0000 (+0300) Subject: drm/exynos/hdmi: add a missing tab X-Git-Tag: android-x86-7.1-r1~1423^2~7^2~8 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f9628c2a8ecce1d9fbd74893e42bb0edd4c30fd4;p=android-x86%2Fkernel.git drm/exynos/hdmi: add a missing tab Smatch warns that the if statement isn't indented. Signed-off-by: Dan Carpenter Signed-off-by: Daniel Vetter Link: http://patchwork.freedesktop.org/patch/msgid/20160512195457.GA19095@mwanda --- diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c index 6cd09944405f..58de5a430508 100644 --- a/drivers/gpu/drm/exynos/exynos_hdmi.c +++ b/drivers/gpu/drm/exynos/exynos_hdmi.c @@ -1626,7 +1626,7 @@ static int hdmi_clk_init(struct hdmi_context *hdata) clks = devm_kzalloc(dev, sizeof(*clks) * count, GFP_KERNEL); if (!clks) - return -ENOMEM; + return -ENOMEM; hdata->clk_gates = clks; hdata->clk_muxes = clks + drv_data->clk_gates.count;