From 0ce1c0db7c906943d22c58c50d2182e87f46de8c Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 18 Oct 2021 17:34:12 +0000 Subject: 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 all files by running the following: for f in $(find . -name '*.[ch]'); do printf '%s\n' "$(cat ${f})" > ${f}; done BRANCH=none BUG=b:172020503 TEST=./util/compare_build.sh -b all -j 120 => MATCH Signed-off-by: Tom Hughes Change-Id: Ia3ece5b64b549d21ca11708791368002bb6e9b0e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3229797 Reviewed-by: Aseda Aboagye --- common/led_policy_std.c | 1 - 1 file changed, 1 deletion(-) (limited to 'common/led_policy_std.c') diff --git a/common/led_policy_std.c b/common/led_policy_std.c index e9fe4568a2..b18dc1bc27 100644 --- a/common/led_policy_std.c +++ b/common/led_policy_std.c @@ -199,4 +199,3 @@ static void led_second(void) std_led_set_battery(); } DECLARE_HOOK(HOOK_SECOND, led_second, HOOK_PRIO_DEFAULT); - -- cgit v1.2.1