Frans Hendriks has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/29794
Change subject: util/cbfstool/rmodule.c: Fix typo and correct header ......................................................................
util/cbfstool/rmodule.c: Fix typo and correct header
Header contains ':' in copyright line. rmdoule is a typo Remove the ';' and correct typo to rmodule.
BUG=N/A TEST=N/A
Change-Id: I05b1fb80a81682646c9fba3d234de235b6bc9e8c Signed-off-by: Frans Hendriks fhendriks@eltan.com --- M util/cbfstool/rmodule.c 1 file changed, 3 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/94/29794/1
diff --git a/util/cbfstool/rmodule.c b/util/cbfstool/rmodule.c index 07957cb..ff8f1cd 100644 --- a/util/cbfstool/rmodule.c +++ b/util/cbfstool/rmodule.c @@ -1,5 +1,6 @@ /* - ;* Copyright (C) 2014 Google, Inc. + * Copyright (C) 2014 Google, Inc. + * Copyright (C) 2018 Eltan B.V. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -540,7 +541,7 @@ * section and the relocations can fit entirely within occupied memory * region for the program. The other is that the relocations increase * the memory footprint of the program if it was loaded directly into - * the region it would run. The rmdoule header is a fixed cost that + * the region it would run. The rmodule header is a fixed cost that * is considered a part of the program. */ total_size += buffer_size(&rmod_header);