From 8f3086aaac00749ce22be205ec01c97597a41b36 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Mon, 23 Jan 2017 13:31:23 -0700 Subject: powerpc: Drop CONFIG_SYS_ALLOC_DPRAM This is not defined anywhere in U-Boot. Drop this dead code. Signed-off-by: Simon Glass --- post/cpu/mpc8xx/ether.c | 5 ----- post/cpu/mpc8xx/uart.c | 13 ------------- 2 files changed, 18 deletions(-) (limited to 'post/cpu') diff --git a/post/cpu/mpc8xx/ether.c b/post/cpu/mpc8xx/ether.c index 1b75eb6..47f6f32 100644 --- a/post/cpu/mpc8xx/ether.c +++ b/post/cpu/mpc8xx/ether.c @@ -119,12 +119,7 @@ static void scc_init (int scc_index) rxIdx = 0; txIdx = 0; -#ifdef CONFIG_SYS_ALLOC_DPRAM - rtx = (RTXBD *) (immr->im_cpm.cp_dpmem + - dpram_alloc_align (sizeof (RTXBD), 8)); -#else rtx = (RTXBD *) (immr->im_cpm.cp_dpmem + CPM_SCC_BASE); -#endif #if 0 diff --git a/post/cpu/mpc8xx/uart.c b/post/cpu/mpc8xx/uart.c index e54a4ca..64ca7e4 100644 --- a/post/cpu/mpc8xx/uart.c +++ b/post/cpu/mpc8xx/uart.c @@ -103,12 +103,7 @@ static void smc_init (int smc_index) /* Set the physical address of the host memory buffers in * the buffer descriptors. */ - -#ifdef CONFIG_SYS_ALLOC_DPRAM - dpaddr = dpram_alloc_align (sizeof (cbd_t) * 2 + 2, 8); -#else dpaddr = CPM_POST_BASE; -#endif /* Allocate space for two buffer descriptors in the DP ram. * For now, this address seems OK, but it may have to @@ -276,15 +271,7 @@ static void scc_init (int scc_index) */ sp->scc_gsmrl &= ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT); - - /* Allocate space for two buffer descriptors in the DP ram. - */ - -#ifdef CONFIG_SYS_ALLOC_DPRAM - dpaddr = dpram_alloc_align (sizeof (cbd_t) * 2 + 2, 8); -#else dpaddr = CPM_POST_BASE; -#endif /* Enable SDMA. */ -- cgit v1.1