summaryrefslogtreecommitdiff
path: root/third_party
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2022-06-14 14:18:34 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-15 22:14:33 +0000
commit38ef6b7306679544e8e86adcebb3cb8ff3c78a3d (patch)
tree1cdd5f599019c9e90631529f1f9f332411bd36cc /third_party
parent947e505d26f2dccab0e914e6b4705fd0e9938b77 (diff)
downloadchrome-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 'third_party')
-rw-r--r--third_party/unacl-curve25519/core/cortex-m0/curve25519/mpy121666.S1
-rw-r--r--third_party/unacl-curve25519/core/cortex-m0/curve25519/mul.S1
-rw-r--r--third_party/unacl-curve25519/core/cortex-m0/curve25519/reduce25519.S1
3 files changed, 0 insertions, 3 deletions
diff --git a/third_party/unacl-curve25519/core/cortex-m0/curve25519/mpy121666.S b/third_party/unacl-curve25519/core/cortex-m0/curve25519/mpy121666.S
index d2a467459b..0f847a2484 100644
--- a/third_party/unacl-curve25519/core/cortex-m0/curve25519/mpy121666.S
+++ b/third_party/unacl-curve25519/core/cortex-m0/curve25519/mpy121666.S
@@ -178,4 +178,3 @@ fe25519_mpyWith121666_asm:
pop {r4,r5,r6,r7,r15}
.size fe25519_mpyWith121666_asm, .-fe25519_mpyWith121666_asm
-
diff --git a/third_party/unacl-curve25519/core/cortex-m0/curve25519/mul.S b/third_party/unacl-curve25519/core/cortex-m0/curve25519/mul.S
index 366713a7a3..cb272b9393 100644
--- a/third_party/unacl-curve25519/core/cortex-m0/curve25519/mul.S
+++ b/third_party/unacl-curve25519/core/cortex-m0/curve25519/mul.S
@@ -1108,4 +1108,3 @@ multiply256x256_asm:
pop {r4-r7,pc}
bx lr
.size multiply256x256_asm, .-multiply256x256_asm
-
diff --git a/third_party/unacl-curve25519/core/cortex-m0/curve25519/reduce25519.S b/third_party/unacl-curve25519/core/cortex-m0/curve25519/reduce25519.S
index 9a3c29a0f6..73e613330f 100644
--- a/third_party/unacl-curve25519/core/cortex-m0/curve25519/reduce25519.S
+++ b/third_party/unacl-curve25519/core/cortex-m0/curve25519/reduce25519.S
@@ -160,4 +160,3 @@ fe25519_reduceTo256Bits_asm:
pop {r4,r5,r6,r7,r15}
.size fe25519_reduceTo256Bits_asm, .-fe25519_reduceTo256Bits_asm
-