summaryrefslogtreecommitdiff
path: root/src/ec
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-07-08 12:36:18 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-07-09 09:28:35 +0000
commitc92f5f218f7287ecff4be65b4c6b5b5f24e90cb7 (patch)
treee3c60d49441a7fa0609a0f52b6c575a41c4bd745 /src/ec
parentb0b0c8c60a6072d1b0707f9b9b87650570b35ea3 (diff)
downloadcoreboot-c92f5f218f7287ecff4be65b4c6b5b5f24e90cb7.tar.xz
src/{ec,include,lib}: Use "foo *bar" instead of "foo* bar"
Change-Id: I447aaa1850b7e8b514a8c4c04bf5b426d3d1cd0a Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/27405 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/ec')
-rw-r--r--src/ec/google/chromeec/crosec_proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/google/chromeec/crosec_proto.c b/src/ec/google/chromeec/crosec_proto.c
index 1a8ffb93c5..2529854f26 100644
--- a/src/ec/google/chromeec/crosec_proto.c
+++ b/src/ec/google/chromeec/crosec_proto.c
@@ -24,7 +24,7 @@
#include "ec_message.h"
/* Common utilities */
-void * __weak crosec_get_buffer(size_t size, int req)
+void *__weak crosec_get_buffer(size_t size, int req)
{
printk(BIOS_DEBUG, "crosec_get_buffer() implementation required.\n");
return NULL;