diff options
author | Tom Hughes <tomhughes@chromium.org> | 2022-06-14 14:18:34 -0700 |
---|---|---|
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2022-06-15 22:14:33 +0000 |
commit | 38ef6b7306679544e8e86adcebb3cb8ff3c78a3d (patch) | |
tree | 1cdd5f599019c9e90631529f1f9f332411bd36cc /core/nds32/switch.S | |
parent | 947e505d26f2dccab0e914e6b4705fd0e9938b77 (diff) | |
download | chrome-ec-38ef6b7306679544e8e86adcebb3cb8ff3c78a3d.tar.gz |
tree: Files should end with single newline
One of the checks that runs as part of "repo upload" looks for a single
newline at the end of each file. I'm getting warnings about this when I
touch files that do not follow this, even though I didn't add the extra
newlines.
This commit fixes additional files not included in
https://crrev.com/c/3229797 by running the following:
for f in $(find . -name '*.mk');
do printf '%s\n' "$(cat ${f})" > ${f};
done
for f in $(find . -name '*.S'); do
printf '%s\n' "$(cat ${f})" > ${f}
done
BRANCH=none
BUG=b:172020503, b:234181908
TEST=./util/compare_build.sh -b all -j 120
Signed-off-by: Tom Hughes <tomhughes@chromium.org>
Change-Id: Ib4e4d0e74bf3b00a0b2c81505fef65e2c1b7401f
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3705766
Reviewed-by: Denis Brockus <dbrockus@chromium.org>
Diffstat (limited to 'core/nds32/switch.S')
-rw-r--r-- | core/nds32/switch.S | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/nds32/switch.S b/core/nds32/switch.S index 631b0e0fe2..13d1b14345 100644 --- a/core/nds32/switch.S +++ b/core/nds32/switch.S @@ -106,4 +106,3 @@ __task_start: /* we should never return here: set code to EC_ERROR_UNKNOWN */ movi55 $r0, 0x1 ret5 $lp - |