Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235234
b: refs/heads/master
c: 375b19c
h: refs/heads/master
v: v3
  • Loading branch information
Simon Glass authored and Colin Cross committed Feb 21, 2011
1 parent 0f24aac commit 8a3c2b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1ca00347c579f15b0eea1a6d4bab84e2cf56e745
refs/heads/master: 375b19cd34ea9b1ab338deac20b4bd2c553bf57b
5 changes: 3 additions & 2 deletions trunk/arch/arm/mach-tegra/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ void tegra_assert_system_reset(char mode, const char *cmd)
void __iomem *reset = IO_ADDRESS(TEGRA_CLK_RESET_BASE + 0x04);
u32 reg;

reg = readl(reset);
/* use *_related to avoid spinlock since caches are off */
reg = readl_relaxed(reset);
reg |= 0x04;
writel(reg, reset);
writel_relaxed(reg, reset);
}

static __initdata struct tegra_clk_init_table common_clk_init_table[] = {
Expand Down

0 comments on commit 8a3c2b3

Please sign in to comment.