From: Tiffany Yang Date: Tue, 22 Jul 2025 23:45:06 +0000 (-0700) Subject: binder: Add copyright notice to new kunit files X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a8d47e86cf537e6f6deb5c736bbf948a7bbc885;p=thirdparty%2Flinux.git binder: Add copyright notice to new kunit files Clean up for the binder_alloc kunit test series. Add a copyright notice to new files, as suggested by Carlos [1]. [1] https://lore.kernel.org/all/CAFuZdDLD=3CBOLSWw3VxCf7Nkf884SSNmt1wresQgxgBwED=eQ@mail.gmail.com/ Fixes: 5e024582f494 ("binder: Scaffolding for binder_alloc KUnit tests") Suggested-by: Carlos Llamas Cc: Joel Fernandes Signed-off-by: Tiffany Yang Link: https://lore.kernel.org/r/20250722234508.232228-1-ynaffit@google.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/android/tests/.kunitconfig b/drivers/android/tests/.kunitconfig index a73601231049a..39b76bab9d9a1 100644 --- a/drivers/android/tests/.kunitconfig +++ b/drivers/android/tests/.kunitconfig @@ -1,3 +1,7 @@ +# +# Copyright 2025 Google LLC. +# + CONFIG_KUNIT=y CONFIG_ANDROID_BINDER_IPC=y CONFIG_ANDROID_BINDER_ALLOC_KUNIT_TEST=y diff --git a/drivers/android/tests/Makefile b/drivers/android/tests/Makefile index 6780967e573b2..27268418eb033 100644 --- a/drivers/android/tests/Makefile +++ b/drivers/android/tests/Makefile @@ -1,3 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-only +# +# Copyright 2025 Google LLC. +# obj-$(CONFIG_ANDROID_BINDER_ALLOC_KUNIT_TEST) += binder_alloc_kunit.o diff --git a/drivers/android/tests/binder_alloc_kunit.c b/drivers/android/tests/binder_alloc_kunit.c index 02aa4a135eb59..f8c05bf15c2d8 100644 --- a/drivers/android/tests/binder_alloc_kunit.c +++ b/drivers/android/tests/binder_alloc_kunit.c @@ -1,6 +1,9 @@ // SPDX-License-Identifier: GPL-2.0 /* - * Test cases for binder allocator code + * Test cases for binder allocator code. + * + * Copyright 2025 Google LLC. + * Author: Tiffany Yang */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt