Commit 43a3188e authored by Mike Frysinger's avatar Mike Frysinger Committed by Bryan Wu

Blackfin arch: make sure we initialize our L1 Data B section properly based on the linked kernel

Signed-off-by: default avatarMike Frysinger <michael.frysinger@analog.com>
Signed-off-by: default avatarBryan Wu <bryan.wu@analog.com>
parent 581d62ab
...@@ -109,8 +109,9 @@ void __init l1_data_sram_init(void) ...@@ -109,8 +109,9 @@ void __init l1_data_sram_init(void)
#endif #endif
#if L1_DATA_B_LENGTH != 0 #if L1_DATA_B_LENGTH != 0
memset(&l1_data_B_sram, 0x00, sizeof(l1_data_B_sram)); memset(&l1_data_B_sram, 0x00, sizeof(l1_data_B_sram));
l1_data_B_sram[0].paddr = (void*)L1_DATA_B_START; l1_data_B_sram[0].paddr = (void *)L1_DATA_B_START +
l1_data_B_sram[0].size = L1_DATA_B_LENGTH; (_ebss_b_l1 - _sdata_b_l1);
l1_data_B_sram[0].size = L1_DATA_B_LENGTH - (_ebss_b_l1 - _sdata_b_l1);
l1_data_B_sram[0].flag = SRAM_SLT_FREE; l1_data_B_sram[0].flag = SRAM_SLT_FREE;
printk(KERN_INFO "Blackfin Data B SRAM: %d KB (%d KB free)\n", printk(KERN_INFO "Blackfin Data B SRAM: %d KB (%d KB free)\n",
......
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