From: Kevin O'Connor Date: Thu, 19 Nov 2015 21:23:39 +0000 (-0500) Subject: tpm: Add "static" declaration to functions not used outside tcgbios.c X-Git-Tag: rel-1.10.0~155 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0818b1dabdf3d61eff0276231c313cb6d64d09eb;p=people%2Fandrewcoop%2Fseabios.git tpm: Add "static" declaration to functions not used outside tcgbios.c Signed-off-by: Kevin O'Connor --- diff --git a/src/tcgbios.c b/src/tcgbios.c index 5229b4e..341ab9d 100644 --- a/src/tcgbios.c +++ b/src/tcgbios.c @@ -1136,7 +1136,7 @@ tpm_calling_int19h(void) /* * Add event separators for PCRs 0 to 7; specs on 'Measuring Boot Events' */ -u32 +static u32 tpm_add_event_separators(void) { u32 rc; @@ -1205,7 +1205,7 @@ tpm_add_bootdevice(u32 bootcd, u32 bootdrv) /* * Add measurement to the log about option rom scan */ -u32 +static u32 tpm_start_option_rom_scan(void) { if (!CONFIG_TCGBIOS) @@ -1248,7 +1248,7 @@ tpm_option_rom(const void *addr, u32 len) } -u32 +static u32 tpm_smbios_measure(void) { if (!CONFIG_TCGBIOS)