Kill ALT_CBFS_LOAD_PAYLOAD

Not used anymore.

Change-Id: Icf3a4a7f932776981048b805478582ad2b784182
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/5132
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Vladimir Serbinenko 2014-02-05 14:27:22 +01:00
parent 58fdb4fe15
commit cf6c9cc29c
2 changed files with 0 additions and 11 deletions

View File

@ -47,15 +47,6 @@ config CBFS_PREFIX
Select the prefix to all files put into the image. It's "fallback" Select the prefix to all files put into the image. It's "fallback"
by default, "normal" is a common alternative. by default, "normal" is a common alternative.
config ALT_CBFS_LOAD_PAYLOAD
bool "Use alternative cbfs_load_payload() implementation."
default n
help
Either board or southbridge provide an alternative cbfs_load_payload()
implementation. This may be used, for example, if accessing the ROM
through memory-mapped I/O is slow and a faster alternative can be
provided.
choice choice
prompt "Compiler to use" prompt "Compiler to use"
default COMPILER_GCC default COMPILER_GCC

View File

@ -160,7 +160,6 @@ void * cbfs_load_stage(struct cbfs_media *media, const char *name)
return (void *) entry; return (void *) entry;
} }
#if !CONFIG_ALT_CBFS_LOAD_PAYLOAD
void *cbfs_load_payload(struct cbfs_media *media, const char *name) void *cbfs_load_payload(struct cbfs_media *media, const char *name)
{ {
struct cbfs_payload *payload; struct cbfs_payload *payload;
@ -173,7 +172,6 @@ void *cbfs_load_payload(struct cbfs_media *media, const char *name)
media, name, CBFS_TYPE_PAYLOAD, NULL); media, name, CBFS_TYPE_PAYLOAD, NULL);
return payload; return payload;
} }
#endif
/* Simple buffer */ /* Simple buffer */