Commit 7173d549 authored by Cyril Chemparathy's avatar Cyril Chemparathy Committed by Kevin Hilman

Davinci: tnetv107x: retain psc reg base after init

This is a bugfix for the original tnetv107x submission series.  The psc_regs
base array was being discarded post-init, and this was causing a crash during
post-init clock enable/disable.
Signed-off-by: default avatarCyril Chemparathy <cyril@ti.com>
Signed-off-by: default avatarKevin Hilman <khilman@deeprootsystems.com>
parent b987c4b2
...@@ -104,7 +104,7 @@ static u32 pll_ext_freq[] = { ...@@ -104,7 +104,7 @@ static u32 pll_ext_freq[] = {
}; };
/* PSC control registers */ /* PSC control registers */
static u32 psc_regs[] __initconst = { TNETV107X_PSC_BASE }; static u32 psc_regs[] = { TNETV107X_PSC_BASE };
/* Host map for interrupt controller */ /* Host map for interrupt controller */
static u32 intc_host_map[] = { 0x01010000, 0x01010101, -1 }; static u32 intc_host_map[] = { 0x01010000, 0x01010101, -1 };
......
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