From 342f8d6e507b1a5c8dfd3f48936fed32ed0997e4 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Fri, 10 Mar 2017 15:31:56 -0800 Subject: src/lib: Fix brace positions Fix the following errors detected by checkpatch.pl: ERROR: open brace '{' following function declarations go on the next line ERROR: that open brace { should be on the previous line ERROR: open brace '{' following struct go on the same line ERROR: else should follow close brace '}' TEST=Build and run on Galileo Gen2 Change-Id: I971ada9ba9ba7ce5d8029323710fee1a6166570b Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/18759 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/lib/mocked_tlcl.c | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'src/lib/mocked_tlcl.c') diff --git a/src/lib/mocked_tlcl.c b/src/lib/mocked_tlcl.c index 6a8043d63f..2eec78d697 100644 --- a/src/lib/mocked_tlcl.c +++ b/src/lib/mocked_tlcl.c @@ -23,17 +23,20 @@ #define VBDEBUG(format, args...) printk(BIOS_DEBUG, format, ## args) #endif -uint32_t tlcl_lib_init(void) { +uint32_t tlcl_lib_init(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } -uint32_t tlcl_startup(void) { +uint32_t tlcl_startup(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } -uint32_t tlcl_resume(void) { +uint32_t tlcl_resume(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } @@ -69,32 +72,38 @@ uint32_t tlcl_read(uint32_t index, void *data, uint32_t length) } -uint32_t tlcl_assert_physical_presence(void) { +uint32_t tlcl_assert_physical_presence(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } -uint32_t tlcl_physical_presence_cmd_enable(void) { +uint32_t tlcl_physical_presence_cmd_enable(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } -uint32_t tlcl_finalize_physical_presence(void) { +uint32_t tlcl_finalize_physical_presence(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } -uint32_t tlcl_set_nv_locked(void) { +uint32_t tlcl_set_nv_locked(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } -uint32_t tlcl_force_clear(void) { +uint32_t tlcl_force_clear(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } -uint32_t tlcl_set_enable(void) { +uint32_t tlcl_set_enable(void) +{ VBDEBUG("MOCK_TPM: %s\n", __func__); return TPM_E_NO_DEVICE; } -- cgit v1.2.3