diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-12-01 17:58:58 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-12-02 18:43:47 +0100 |
commit | 16c7e0f56c1d76bfca7b46306a0ceddc8ea7842e (patch) | |
tree | 7dc449fea991e4d7ab834133c2005b02322976c1 /util/cbfstool | |
parent | 5dda4df4246ff4b4fe4e84311c6fc7b723ad7efb (diff) | |
download | coreboot-16c7e0f56c1d76bfca7b46306a0ceddc8ea7842e.tar.xz |
cbfstool: Fix checkpatch error
ERROR: code indent should use tabs where possible
+^I trampoline_len);$
Change-Id: If46f977e2e07d73e6cfd3038912a172236a7e571
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/12620
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/cbfstool')
-rw-r--r-- | util/cbfstool/cbfs-payload-linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/cbfs-payload-linux.c b/util/cbfstool/cbfs-payload-linux.c index 84e348de11..34b21e9054 100644 --- a/util/cbfstool/cbfs-payload-linux.c +++ b/util/cbfstool/cbfs-payload-linux.c @@ -98,7 +98,7 @@ static void bzp_add_segment(struct bzpayload *bzp, struct buffer *b, void *data, static int bzp_add_trampoline(struct bzpayload *bzp) { bzp_add_segment(bzp, &bzp->trampoline, trampoline, - trampoline_len); + trampoline_len); return 0; } |