aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mm/sram-alloc.c
diff options
context:
space:
mode:
authorGraf Yang <graf.yang@analog.com>2009-05-25 04:44:00 +0000
committerMike Frysinger <vapier@gentoo.org>2009-06-12 06:11:50 -0400
commitc72aa0794a0ecc0b87ba9d5546215c26c8c80668 (patch)
tree7bd394bac5e1aa831b21e6dafe9cb149e094887d /arch/blackfin/mm/sram-alloc.c
parentBlackfin: drop unused reserve_pda() function (diff)
downloadlinux-dev-c72aa0794a0ecc0b87ba9d5546215c26c8c80668.tar.xz
linux-dev-c72aa0794a0ecc0b87ba9d5546215c26c8c80668.zip
Blackfin: merge sram init functions
Now that the sram_init() function exists only to call the bfin_sram_init() after the punting of the reserve_pda() function, simply merge the two to avoid pointless overhead. Signed-off-by: Graf Yang <graf.yang@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to '')
-rw-r--r--arch/blackfin/mm/sram-alloc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/blackfin/mm/sram-alloc.c b/arch/blackfin/mm/sram-alloc.c
index 530d1393a232..36376d8418fa 100644
--- a/arch/blackfin/mm/sram-alloc.c
+++ b/arch/blackfin/mm/sram-alloc.c
@@ -223,7 +223,7 @@ static void __init l2_sram_init(void)
spin_lock_init(&l2_sram_lock);
}
-void __init bfin_sram_init(void)
+static int __init bfin_sram_init(void)
{
sram_piece_cache = kmem_cache_create("sram_piece_cache",
sizeof(struct sram_piece),
@@ -233,7 +233,10 @@ void __init bfin_sram_init(void)
l1_data_sram_init();
l1_inst_sram_init();
l2_sram_init();
+
+ return 0;
}
+pure_initcall(bfin_sram_init);
/* SRAM allocate function */
static void *_sram_alloc(size_t size, struct sram_piece *pfree_head,