From 080cd750dfbcf0adc0afa24719914f994cd50d30 Mon Sep 17 00:00:00 2001 From: Ikey Doherty Date: Fri, 27 May 2016 02:05:45 +0100 Subject: [PATCH] Remove useless prototype Signed-off-by: Ikey Doherty --- src/shim/lsi.c | 6 ------ src/shim/lsi.h | 7 ------- 2 files changed, 13 deletions(-) diff --git a/src/shim/lsi.c b/src/shim/lsi.c index dcb072e..2f0197a 100644 --- a/src/shim/lsi.c +++ b/src/shim/lsi.c @@ -144,12 +144,6 @@ bool lsi_config_load(LsiConfig *config) return true; } -bool lsi_config_store(__lsi_unused__ LsiConfig *config) -{ - fputs("lsi_config_store(): Not yet implemented\n", stderr); - return false; -} - void lsi_config_load_defaults(LsiConfig *config) { assert(config != NULL); diff --git a/src/shim/lsi.h b/src/shim/lsi.h index d3840c5..72ed44e 100644 --- a/src/shim/lsi.h +++ b/src/shim/lsi.h @@ -39,13 +39,6 @@ typedef struct LsiConfig { */ bool lsi_config_load(LsiConfig *config); -/** - * Attempt to write the LsiConfiguration to storage - * - * @returns true if the write succeeded, otherwise false. - */ -bool lsi_config_store(LsiConfig *config); - /** * Set the defaults for the LsiConfiguration */