diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-04-30 05:42:50 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2014-12-03 18:49:20 -0500 |
commit | 108cc2e7d212c7d52694fb400423da807e1e5fe4 (patch) | |
tree | 5717e95d8c73b955da076595525c25f5d6c178dc | |
parent | 009d0431c3914de64666bec0d350e54fdd59df6a (diff) |
SFI: fix compiler warnings
drivers/sfi/sfi_core.c:164:26: warning: no previous prototype for ‘sfi_map_table’ [-Wmissing-prototypes]
drivers/sfi/sfi_core.c:192:6: warning: no previous prototype for ‘sfi_unmap_table’ [-Wmissing-prototypes]
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/sfi/sfi_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/sfi/sfi_core.c b/drivers/sfi/sfi_core.c index 1e824fb1649b..296db7a69c27 100644 --- a/drivers/sfi/sfi_core.c +++ b/drivers/sfi/sfi_core.c | |||
@@ -161,7 +161,7 @@ static int sfi_verify_table(struct sfi_table_header *table) | |||
161 | * Check for common case that we can re-use mapping to SYST, | 161 | * Check for common case that we can re-use mapping to SYST, |
162 | * which requires syst_pa, syst_va to be initialized. | 162 | * which requires syst_pa, syst_va to be initialized. |
163 | */ | 163 | */ |
164 | struct sfi_table_header *sfi_map_table(u64 pa) | 164 | static struct sfi_table_header *sfi_map_table(u64 pa) |
165 | { | 165 | { |
166 | struct sfi_table_header *th; | 166 | struct sfi_table_header *th; |
167 | u32 length; | 167 | u32 length; |
@@ -189,7 +189,7 @@ struct sfi_table_header *sfi_map_table(u64 pa) | |||
189 | * Undoes effect of sfi_map_table() by unmapping table | 189 | * Undoes effect of sfi_map_table() by unmapping table |
190 | * if it did not completely fit on same page as SYST. | 190 | * if it did not completely fit on same page as SYST. |
191 | */ | 191 | */ |
192 | void sfi_unmap_table(struct sfi_table_header *th) | 192 | static void sfi_unmap_table(struct sfi_table_header *th) |
193 | { | 193 | { |
194 | if (!TABLE_ON_PAGE(syst_va, th, th->len)) | 194 | if (!TABLE_ON_PAGE(syst_va, th, th->len)) |
195 | sfi_unmap_memory(th, TABLE_ON_PAGE(th, th, th->len) ? | 195 | sfi_unmap_memory(th, TABLE_ON_PAGE(th, th, th->len) ? |