Commit 7e25eb01 authored by Thierry Reding's avatar Thierry Reding Committed by Stephen Warren

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: default avatarThierry Reding <treding@nvidia.com>
Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
parent 8a0a1af3
...@@ -132,9 +132,9 @@ int tegra_powergate_remove_clamping(int id) ...@@ -132,9 +132,9 @@ int tegra_powergate_remove_clamping(int id)
* Tegra 2 has a bug where PCIE and VDE clamping masks are * Tegra 2 has a bug where PCIE and VDE clamping masks are
* swapped relatively to the partition ids * swapped relatively to the partition ids
*/ */
if (id == TEGRA_POWERGATE_VDEC) if (id == TEGRA_POWERGATE_VDEC)
mask = (1 << TEGRA_POWERGATE_PCIE); mask = (1 << TEGRA_POWERGATE_PCIE);
else if (id == TEGRA_POWERGATE_PCIE) else if (id == TEGRA_POWERGATE_PCIE)
mask = (1 << TEGRA_POWERGATE_VDEC); mask = (1 << TEGRA_POWERGATE_VDEC);
else else
mask = (1 << id); mask = (1 << id);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment