Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <cmllamas@google.com>
Cc: Joel Fernandes <joelagnelf@nvidia.com>
Signed-off-by: Tiffany Yang <ynaffit@google.com>
Link: https://lore.kernel.org/r/20250722234508.232228-1-ynaffit@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Tiffany Yang and committed by
Greg Kroah-Hartman
8a8d47e8 b13b41cc

+11 -1
+4
drivers/android/tests/.kunitconfig
··· 1 + # 2 + # Copyright 2025 Google LLC. 3 + # 4 + 1 5 CONFIG_KUNIT=y 2 6 CONFIG_ANDROID_BINDER_IPC=y 3 7 CONFIG_ANDROID_BINDER_ALLOC_KUNIT_TEST=y
+3
drivers/android/tests/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 + # 3 + # Copyright 2025 Google LLC. 4 + # 2 5 3 6 obj-$(CONFIG_ANDROID_BINDER_ALLOC_KUNIT_TEST) += binder_alloc_kunit.o
+4 -1
drivers/android/tests/binder_alloc_kunit.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0 2 2 /* 3 - * Test cases for binder allocator code 3 + * Test cases for binder allocator code. 4 + * 5 + * Copyright 2025 Google LLC. 6 + * Author: Tiffany Yang <ynaffit@google.com> 4 7 */ 5 8 6 9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt