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 <furquan@google.com>
Reviewed-on: https://chromium-review.googlesource.com/190364
Reviewed-by: Stefan Reinauer <reinauer@chromium.org>
Commit-Queue: Furquan Shaikh <furquan@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
Furquan Shaikh 2014-03-17 14:16:57 -07:00 committed by chrome-internal-fetch
commit bb616efbb3
2 changed files with 0 additions and 45 deletions

View file

@ -1,3 +0,0 @@
ramstage-y += cache.c
romstage-y += cache.c
bootblock-y += cache.c

View file

@ -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 <aarch64.h>
/*
* 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)
{
}