|
@@ -678,10 +678,10 @@ void __init mem_init(void)
|
|
|
void free_initmem(void)
|
|
|
{
|
|
|
#ifdef CONFIG_HAVE_TCM
|
|
|
- extern char *__tcm_start, *__tcm_end;
|
|
|
+ extern char __tcm_start, __tcm_end;
|
|
|
|
|
|
- totalram_pages += free_area(__phys_to_pfn(__pa(__tcm_start)),
|
|
|
- __phys_to_pfn(__pa(__tcm_end)),
|
|
|
+ totalram_pages += free_area(__phys_to_pfn(__pa(&__tcm_start)),
|
|
|
+ __phys_to_pfn(__pa(&__tcm_end)),
|
|
|
"TCM link");
|
|
|
#endif
|
|
|
|