diff mbox

[1/2] ARM: tegra: Fix some whitespace oddities

Message ID 1386343633-2137-1-git-send-email-treding@nvidia.com
State Accepted, archived
Delegated to: Stephen Warren
Headers show

Commit Message

Thierry Reding Dec. 6, 2013, 3:27 p.m. UTC
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>
---
 arch/arm/mach-tegra/powergate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Stephen Warren Dec. 12, 2013, 6:49 p.m. UTC | #1
On 12/06/2013 08:27 AM, Thierry Reding wrote:
> Some of the powergate code uses unusual spacing around == and has a tab
> instead of a space before an opening parenthesis.

I've applied the series to Tegra's for-3.14/soc branch.
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/arch/arm/mach-tegra/powergate.c b/arch/arm/mach-tegra/powergate.c
index 3bddf9684efd..2c175c67e39f 100644
--- a/arch/arm/mach-tegra/powergate.c
+++ b/arch/arm/mach-tegra/powergate.c
@@ -147,9 +147,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);