]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
binder: remove MODULE_LICENSE()
authorCarlos Llamas <cmllamas@google.com>
Sun, 17 Aug 2025 13:50:34 +0000 (13:50 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Aug 2025 09:49:19 +0000 (11:49 +0200)
The MODULE_LICENSE() macro is intended for drivers that can be built as
loadable modules. The binder driver is always built-in, using this macro
here is unnecessary and potentially confusing. Remove it.

Cc: Salvatore Bonaccorso <carnil@debian.org>
Signed-off-by: Carlos Llamas <cmllamas@google.com>
Link: https://lore.kernel.org/r/20250817135034.3692902-1-cmllamas@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/android/binder.c

index 312b462e349de0d86189379d0403da6973c9092f..28634f786e701247a924543c9dd79fc3ac4f3026 100644 (file)
@@ -7088,5 +7088,3 @@ device_initcall(binder_init);
 
 #define CREATE_TRACE_POINTS
 #include "binder_trace.h"
-
-MODULE_LICENSE("GPL v2");