From bb616efbb37edfd5ffd99a17f0b247bf5a143da0 Mon Sep 17 00:00:00 2001 From: Furquan Shaikh Date: Mon, 17 Mar 2014 14:16:57 -0700 Subject: [PATCH] coreboot: Remove redundant file cache.c File cache.c under armltd/armv8 is redundant as this file is already present under src/arch/aarch64. BUG=None BRANCH=None TEST=Compiled successfully Change-Id: If5416c2d8cbb20cdd5a6ebd374250972719e5bc5 Signed-off-by: Furquan Shaikh Reviewed-on: https://chromium-review.googlesource.com/190364 Reviewed-by: Stefan Reinauer Commit-Queue: Furquan Shaikh Tested-by: Furquan Shaikh --- src/cpu/armltd/armv8/Makefile.inc | 3 --- src/cpu/armltd/armv8/cache.c | 42 ------------------------------- 2 files changed, 45 deletions(-) delete mode 100644 src/cpu/armltd/armv8/cache.c diff --git a/src/cpu/armltd/armv8/Makefile.inc b/src/cpu/armltd/armv8/Makefile.inc index f1a3689691..e69de29bb2 100644 --- a/src/cpu/armltd/armv8/Makefile.inc +++ b/src/cpu/armltd/armv8/Makefile.inc @@ -1,3 +0,0 @@ -ramstage-y += cache.c -romstage-y += cache.c -bootblock-y += cache.c diff --git a/src/cpu/armltd/armv8/cache.c b/src/cpu/armltd/armv8/cache.c deleted file mode 100644 index dd00faf8ef..0000000000 --- a/src/cpu/armltd/armv8/cache.c +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (C) 2013 Google, Inc. - * - * This software is licensed under the terms of the GNU General Public - * License version 2, as published by the Free Software Foundation, and - * may be copied, distributed, and modified under those terms. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - */ - -#include - -/* - * Sets L2 cache related parameters before enabling data cache - */ -void v8_outer_cache_enable(void) -{ -} - -/* stubs so we don't need weak symbols in cache_v8.c */ -void v8_outer_cache_disable(void) -{ -} - -void v8_outer_cache_flush_all(void) -{ -} - -void v8_outer_cache_inval_all(void) -{ -} - -void v8_outer_cache_flush_range(u32 start, u32 end) -{ -} - -void v8_outer_cache_inval_range(u32 start, u32 end) -{ -}