This stuff is not used, so let's drop it. Signed-off-by: Stefan Reinauer <reinauer@google.com> BUG=none BRANCH=none TEST=boot tested on Link and Snow Change-Id: Ib3f3eab653f87a75e9e1e6a0bcdd72a605f77e6c Reviewed-on: https://gerrit.chromium.org/gerrit/56652 Reviewed-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-by: Ronald G. Minnich <rminnich@chromium.org> Commit-Queue: Stefan Reinauer <reinauer@google.com> Tested-by: Stefan Reinauer <reinauer@google.com>
27 lines
955 B
C
27 lines
955 B
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <console/console.h>
|
|
#include <arch/stages.h>
|
|
|
|
void jmp_to_elf_entry(void *entry, unsigned long buffer, unsigned long size)
|
|
{
|
|
printk(BIOS_SPEW, "entry = %p\n", entry);
|
|
stage_exit(entry);
|
|
}
|