Title: [5264] trunk: Modify some funtion name in setup.c
Revision
5264
Author
gyang
Date
2008-09-09 03:05:23 -0500 (Tue, 09 Sep 2008)

Log Message

Modify some funtion name in setup.c

Modified Paths


Diff

Modified: trunk/arch/blackfin/kernel/setup.c (5263 => 5264)


--- trunk/arch/blackfin/kernel/setup.c	2008-09-09 02:55:59 UTC (rev 5263)
+++ trunk/arch/blackfin/kernel/setup.c	2008-09-09 08:05:23 UTC (rev 5264)
@@ -78,10 +78,10 @@
 static struct bfin_memmap_entry *overlap_list[BFIN_MEMMAP_MAX] __initdata;
 static struct bfin_memmap_entry new_map[BFIN_MEMMAP_MAX] __initdata;
 
-void __init bf53x_cache_init(void)
+void __init bfin_cache_init(void)
 {
 #if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
-	generate_cpl_tables();
+	generate_cplb_tables();
 #endif
 
 #ifdef CONFIG_BFIN_ICACHE
@@ -101,7 +101,7 @@
 #endif
 }
 
-void __init bf53x_relocate_l1_mem(void)
+void __init bfin_relocate_l1_mem(void)
 {
 	unsigned long l1_code_length;
 	unsigned long l1_data_a_length;
@@ -860,7 +860,7 @@
 		!= SAFE_USER_INSTRUCTION - FIXED_CODE_START);
 
 	init_exception_vectors();
-	bf53x_cache_init();
+	bfin_cache_init();
 }
 
 static int __init topology_init(void)

Modified: trunk/arch/blackfin/mach-common/head.S (5263 => 5264)


--- trunk/arch/blackfin/mach-common/head.S	2008-09-09 02:55:59 UTC (rev 5263)
+++ trunk/arch/blackfin/mach-common/head.S	2008-09-09 08:05:23 UTC (rev 5264)
@@ -141,7 +141,7 @@
 #endif
 
 	/* Put The Code for PLL Programming and SDRAM Programming in L1 ISRAM */
-	call _bf53x_relocate_l1_mem;
+	call _bfin_relocate_l1_mem;
 #ifdef CONFIG_BFIN_KERNEL_CLOCK
 	call _start_dma_code;
 #endif

Modified: trunk/include/asm-blackfin/cplbinit.h (5263 => 5264)


--- trunk/include/asm-blackfin/cplbinit.h	2008-09-09 02:55:59 UTC (rev 5263)
+++ trunk/include/asm-blackfin/cplbinit.h	2008-09-09 08:05:23 UTC (rev 5264)
@@ -90,6 +90,6 @@
 extern unsigned long reserved_mem_dcache_on;
 extern unsigned long reserved_mem_icache_on;
 
-extern void generate_cpl_tables(void);
+extern void generate_cplb_tables(void);
 
 #endif
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
http://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to