summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-10-27 08:56:29 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-12-16 09:40:43 +0000
commit80759b0dbdf119fb97f0b7655a063916958bd7ce (patch)
tree27632e2ee92d278ce59ed580bf4de69d5df24684 /src
parentece88ab765859b728c2ba17d1224455807a5fda6 (diff)
downloadcoreboot-80759b0dbdf119fb97f0b7655a063916958bd7ce.tar.xz
drivers/intel/fsp1_1: Drop unused function
Change-Id: Ide336fb900360c446bffcc5ca31bf51e7746cae1 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36370 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/drivers/intel/fsp1_1/fsp_util.c7
-rw-r--r--src/drivers/intel/fsp1_1/include/fsp/util.h9
2 files changed, 0 insertions, 16 deletions
diff --git a/src/drivers/intel/fsp1_1/fsp_util.c b/src/drivers/intel/fsp1_1/fsp_util.c
index b1075ff2b5..891dc0379d 100644
--- a/src/drivers/intel/fsp1_1/fsp_util.c
+++ b/src/drivers/intel/fsp1_1/fsp_util.c
@@ -280,10 +280,3 @@ void fsp_display_upd_value(const char *name, uint32_t size, uint64_t old,
}
}
}
-
-__attribute__((cdecl)) size_t fsp_write_line(uint8_t *buffer,
- size_t number_of_bytes)
-{
- console_write_line(buffer, number_of_bytes);
- return number_of_bytes;
-}
diff --git a/src/drivers/intel/fsp1_1/include/fsp/util.h b/src/drivers/intel/fsp1_1/include/fsp/util.h
index dca6d560a4..73b156fb94 100644
--- a/src/drivers/intel/fsp1_1/include/fsp/util.h
+++ b/src/drivers/intel/fsp1_1/include/fsp/util.h
@@ -96,15 +96,6 @@ void *get_first_hob(uint16_t type);
void *get_next_guid_hob(const EFI_GUID *guid, const void *hob_start);
void *get_first_guid_hob(const EFI_GUID *guid);
-/*
- * Writes number_of_bytes data bytes from buffer to the console.
- * The number of bytes actually written to the console is returned.
- *
- * If number_of_bytes is zero, don't output any data but instead wait until
- * the console has output all data, then return 0.
- */
-__attribute__((cdecl)) size_t fsp_write_line(uint8_t *buffer,
- size_t number_of_bytes);
asmlinkage void chipset_teardown_car_main(void);