diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2013-12-06 10:27:12 -0500 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-12-16 16:02:50 -0500 |
commit | 7e25eb01e648b4cfde566cc2520a2d7222c63fc8 (patch) | |
tree | ce720d848916452f3ef1f9b1bb40bd20a38d78ff | |
parent | 8a0a1af30cbf56b41220a02e34835022c4d72f41 (diff) |
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 <treding@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
-rw-r--r-- | arch/arm/mach-tegra/powergate.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
132 | * Tegra 2 has a bug where PCIE and VDE clamping masks are | 132 | * Tegra 2 has a bug where PCIE and VDE clamping masks are |
133 | * swapped relatively to the partition ids | 133 | * swapped relatively to the partition ids |
134 | */ | 134 | */ |
135 | if (id == TEGRA_POWERGATE_VDEC) | 135 | if (id == TEGRA_POWERGATE_VDEC) |
136 | mask = (1 << TEGRA_POWERGATE_PCIE); | 136 | mask = (1 << TEGRA_POWERGATE_PCIE); |
137 | else if (id == TEGRA_POWERGATE_PCIE) | 137 | else if (id == TEGRA_POWERGATE_PCIE) |
138 | mask = (1 << TEGRA_POWERGATE_VDEC); | 138 | mask = (1 << TEGRA_POWERGATE_VDEC); |
139 | else | 139 | else |
140 | mask = (1 << id); | 140 | mask = (1 << id); |