From: Thierry Reding Date: Fri, 6 Dec 2013 15:27:12 +0000 (+0100) Subject: ARM: tegra: Fix some whitespace oddities X-Git-Tag: firefly_0821_release~176^2~4589^2~15^2~6 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7e25eb01e648b4cfde566cc2520a2d7222c63fc8;p=firefly-linux-kernel-4.4.55.git ARM: tegra: Fix some whitespace oddities Some of the powergate code uses unusual spacing around == and has a tab instead of a space before an opening parenthesis. Signed-off-by: Thierry Reding Signed-off-by: Stephen Warren --- diff --git a/arch/arm/mach-tegra/powergate.c b/arch/arm/mach-tegra/powergate.c index f6f5b54ff95e..d5f5bd24dd09 100644 --- a/arch/arm/mach-tegra/powergate.c +++ b/arch/arm/mach-tegra/powergate.c @@ -132,9 +132,9 @@ int tegra_powergate_remove_clamping(int id) * Tegra 2 has a bug where PCIE and VDE clamping masks are * swapped relatively to the partition ids */ - if (id == TEGRA_POWERGATE_VDEC) + if (id == TEGRA_POWERGATE_VDEC) mask = (1 << TEGRA_POWERGATE_PCIE); - else if (id == TEGRA_POWERGATE_PCIE) + else if (id == TEGRA_POWERGATE_PCIE) mask = (1 << TEGRA_POWERGATE_VDEC); else mask = (1 << id);