Commit fa792637 authored by danh-arm's avatar danh-arm Committed by GitHub
Browse files

Merge pull request #956 from hzhuang1/fix_var_in_ddr

hikey: fix uninitialized variable in ddr code
Showing with 3 additions and 3 deletions
+3 -3
...@@ -385,7 +385,7 @@ static void ddrx_rdet(void) ...@@ -385,7 +385,7 @@ static void ddrx_rdet(void)
static void ddrx_wdet(void) static void ddrx_wdet(void)
{ {
unsigned int data, wdet, zero_bdl, dq[4]; unsigned int data, wdet, zero_bdl = 0, dq[4];
int i; int i;
data = mmio_read_32((0xf712c000 + 0x0d0)); data = mmio_read_32((0xf712c000 + 0x0d0));
......
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